fix(docker): chown the application files to bc user
This commit is contained in:
parent
13b85389fb
commit
6a79ebbd2d
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ USER ${APP}
|
||||||
|
|
||||||
# Copy the project into the workdir
|
# Copy the project into the workdir
|
||||||
WORKDIR ${APP_BASE}/${APP}
|
WORKDIR ${APP_BASE}/${APP}
|
||||||
COPY . ${APP_BASE}/${APP}
|
COPY --chown ${APP}:${APP} . ${APP_BASE}/${APP}
|
||||||
|
|
||||||
# Install Python requirements
|
# Install Python requirements
|
||||||
RUN pip3 install -r requirements.txt
|
RUN pip3 install -r requirements.txt
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue