Skip to content

Commit

Permalink
bump python to 3.12.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mawinkler committed Feb 7, 2024
1 parent cb37df5 commit fd01049
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10-slim-bullseye AS compile-image
FROM python:3.12.1 AS compile-image

WORKDIR /app

Expand All @@ -7,7 +7,7 @@ ADD requirements.txt .
RUN pip3 install --no-cache-dir -r requirements.txt --user && \
pip list

FROM python:3.10-slim-bullseye AS runtime-image
FROM python:3.12.1 AS runtime-image

COPY --from=compile-image /root/.local /root/.local
COPY --from=compile-image /etc/ssl /etc/ssl
Expand Down

0 comments on commit fd01049

Please sign in to comment.