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 2b7ecc1 commit e745c5fCopy full SHA for e745c5f
Dockerfile
@@ -1,5 +1,5 @@
1
# build stage
2
-FROM python:3.10-buster AS venv
+FROM python:3.10-bookworm AS venv
3
4
# copy files
5
COPY pyproject.toml poetry.lock ./
@@ -14,7 +14,7 @@ RUN python -m venv --copies /app/venv
14
RUN . /app/venv/bin/activate && $HOME/.local/bin/poetry install --no-directory --without dev --no-root --compile
15
16
# runtime stage
17
-FROM python:3.10-slim-buster as prod
+FROM python:3.10-slim-bookworm as prod
18
19
COPY --from=venv /app/venv /app/venv/
20
ENV PATH /app/venv/bin:$PATH
0 commit comments