Skip to content

Commit

Permalink
refactor(folders): structure
Browse files Browse the repository at this point in the history
  • Loading branch information
slapshin committed May 2, 2023
1 parent a4a0a59 commit ef52a43
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions devops/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ ENV PYTHONFAULTHANDLER=1 \
PIP_DISABLE_PIP_VERSION_CHECK=on \
PIP_DEFAULT_TIMEOUT=100 \
# poetry
POETRY_VERSION=1.1.13 \
POETRY_VERSION=1.2.2 \
POETRY_NO_INTERACTION=1 \
POETRY_VIRTUALENVS_CREATE=false \
POETRY_CACHE_DIR='/var/cache/pypoetry' \
PATH="$PATH:/root/.poetry/bin"
PATH="$PATH:/root/.local/bin"

WORKDIR /app

Expand All @@ -28,7 +28,7 @@ RUN apt-get update \
nginx=1.* \
make=4.* \
curl=7.* \
&& curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/${POETRY_VERSION}/get-poetry.py | python \
&& curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/${POETRY_VERSION}/install-poetry.py | python - \
&& poetry install --no-dev --no-interaction --no-ansi \
&& apt-get remove --purge -y gcc binutils \
&& apt-get autoremove -y \
Expand Down

0 comments on commit ef52a43

Please sign in to comment.