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 18ddb1e commit 855fe8aCopy full SHA for 855fe8a
docker/Dockerfile
@@ -14,7 +14,7 @@ RUN pip install -U pip \
14
# opencv2 deps
15
&& apt-get install ffmpeg libsm6 libxext6 -y \
16
&& apt-get install -y curl netcat \
17
- && curl -sSL "https://install.python-poetry.org" | python -
+ && curl -sSL "https://install.python-poetry.org" | python3 -
18
19
ENV PATH="/root/.local/bin:${PATH}"
20
@@ -26,7 +26,7 @@ RUN poetry --version
26
27
WORKDIR /usr/src/code
28
COPY poetry.lock pyproject.toml /usr/src/code/
29
-RUN poetry install --no-interaction --no-ansi
+RUN poetry install --no-interaction --no-ansi --all-extras
30
31
# copy in source code
32
COPY . /usr/src/code
docker/Dockerfile.dev
0 commit comments