Closed jverswijver closed 1 year ago
Seems like the docker COPY command copies as root which was leading to some permission issues in the container.
COPY
It writes the files as root even if you use the USER command to designate a user, to clarify why this change is needed. --chown lets you set the user and group the file is copied as.
USER
--chown
Seems like the docker
COPY
command copies as root which was leading to some permission issues in the container.