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 d32b3fc commit 532b7e3Copy full SHA for 532b7e3
Dockerfile
@@ -2,10 +2,11 @@ ARG PYTHON_VER=3.11
2
3
FROM python:${PYTHON_VER}-slim
4
5
-RUN which poetry || curl -sSL https://install.python-poetry.org | python3 -
+RUN which poetry || curl -sSL https://install.python-poetry.org | python3 - && \
6
+ poetry config virtualenvs.create false
7
8
WORKDIR /local
9
COPY . /local
10
-RUN poetry config virtualenvs.create false \
11
- && poetry install --no-interaction --no-ansi --with dev
+# Install the app
12
+RUN poetry install --extras all --with dev
0 commit comments