Skip to content

Commit

Permalink
fix(dockerfile): chown
Browse files Browse the repository at this point in the history
  • Loading branch information
vladyoslav committed Jun 21, 2024
1 parent 940fb6f commit a1d499c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ FROM server-setup-build-stage as install-dependencies-build-stage
# install [tool.poetry.dependencies]
# this will install virtual environment into /.venv because of POETRY_VIRTUALENVS_IN_PROJECT=true
# see: https://python-poetry.org/docs/configuration/#virtualenvsin-project
COPY ./poetry.lock ./pyproject.toml /application_root/
COPY --chown=python_application:python_application ./poetry.lock ./pyproject.toml /application_root/
RUN poetry install --no-interaction --no-root --without dev

FROM server-setup-build-stage as production-image
Expand Down

0 comments on commit a1d499c

Please sign in to comment.