fix(docker): chown the application files to bc user
This commit is contained in:
parent
6a79ebbd2d
commit
b1f874eaf3
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 --chown ${APP}:${APP} . ${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