Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# subtle errors when using MUSL.
# - These Python packages usually only provide binary wheels for GLIBC, so the packages
# will need to be recompiled fully within the container images, increasing build times.
FROM python:3.11-slim-bookworm AS python_builder
FROM python:3.12-slim-bookworm AS python_builder

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

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

ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONBUFFERED=1
Expand Down