We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c43725 commit ffa41c0Copy full SHA for ffa41c0
1 file changed
Dockerfile
@@ -1,12 +1,13 @@
1
-FROM python:3.12.1 as builder
+FROM python:3.12.1 AS builder
2
3
WORKDIR /usr/src/app
4
5
RUN pip install poetry
6
7
COPY pyproject.toml poetry.lock ./
8
9
-RUN poetry config virtualenvs.in-project true && poetry install --without dev --no-interaction
+RUN poetry config virtualenvs.in-project true && \
10
+ poetry install --no-interaction
11
12
FROM python:3.12.1-slim
13
0 commit comments