Skip to content

Commit 39c1d84

Browse files
committed
Update container image to Python 3.12
1 parent dbdd4dd commit 39c1d84

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# subtle errors when using MUSL.
99
# - These Python packages usually only provide binary wheels for GLIBC, so the packages
1010
# will need to be recompiled fully within the container images, increasing build times.
11-
FROM python:3.11-slim-bookworm AS python_builder
11+
FROM python:3.12-slim-bookworm AS python_builder
1212

1313
# Pin uv to a specific version to make container builds reproducible.
1414
ENV UV_VERSION=0.6.12
@@ -57,7 +57,7 @@ RUN uv build && \
5757

5858
## Final Image
5959
# The image used in the final image MUST match exactly to the python_builder image.
60-
FROM python:3.11-slim-bookworm
60+
FROM python:3.12-slim-bookworm
6161

6262
ENV PYTHONDONTWRITEBYTECODE=1
6363
ENV PYTHONBUFFERED=1

0 commit comments

Comments
 (0)