Skip to content

Commit e745c5f

Browse files
committed
update dependencies
1 parent 2b7ecc1 commit e745c5f

File tree

3 files changed

+825
-724
lines changed

3 files changed

+825
-724
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# build stage
2-
FROM python:3.10-buster AS venv
2+
FROM python:3.10-bookworm AS venv
33

44
# copy files
55
COPY pyproject.toml poetry.lock ./
@@ -14,7 +14,7 @@ RUN python -m venv --copies /app/venv
1414
RUN . /app/venv/bin/activate && $HOME/.local/bin/poetry install --no-directory --without dev --no-root --compile
1515

1616
# runtime stage
17-
FROM python:3.10-slim-buster as prod
17+
FROM python:3.10-slim-bookworm as prod
1818

1919
COPY --from=venv /app/venv /app/venv/
2020
ENV PATH /app/venv/bin:$PATH

0 commit comments

Comments
 (0)