We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a5a88f commit 7f98680Copy full SHA for 7f98680
Dockerfile
@@ -8,9 +8,10 @@ FROM python:${PYTHON_VER} AS base
8
9
WORKDIR /usr/src/app
10
11
-# Install poetry for dep management
12
-RUN curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python
13
-ENV PATH="$PATH:/root/.poetry/bin"
+RUN pip install -U pip && \
+ curl -sSL https://install.python-poetry.org | python3 -
+ENV PATH="/root/.local/bin:$PATH"
14
+
15
RUN poetry config virtualenvs.create false
16
17
# Install project manifest
0 commit comments