Skip to content

Commit

Permalink
base image python:3.12.1-slim-bullseye
Browse files Browse the repository at this point in the history
  • Loading branch information
mawinkler committed Feb 7, 2024
1 parent 6cce818 commit 68389ed
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.12.1 AS compile-image
FROM python:3.12.1-slim-bullseye 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.12.1 AS runtime-image
FROM python:3.12.1-slim-bullseye 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 68389ed

Please sign in to comment.