Skip to content

Commit 532b7e3

Browse files
committed
fix dockerfile properly this time
1 parent d32b3fc commit 532b7e3

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@ ARG PYTHON_VER=3.11
22

33
FROM python:${PYTHON_VER}-slim
44

5-
RUN which poetry || curl -sSL https://install.python-poetry.org | python3 -
5+
RUN which poetry || curl -sSL https://install.python-poetry.org | python3 - && \
6+
poetry config virtualenvs.create false
67

78
WORKDIR /local
89
COPY . /local
910

10-
RUN poetry config virtualenvs.create false \
11-
&& poetry install --no-interaction --no-ansi --with dev
11+
# Install the app
12+
RUN poetry install --extras all --with dev

0 commit comments

Comments
 (0)