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 @@ -3,7 +3,7 @@
# ---------------------------------------------------------------------------
# Builder: compile wheels once so the runtime image needs no toolchain.
# ---------------------------------------------------------------------------
FROM python:3.12-slim-bookworm AS builder
FROM python:3.14-slim-bookworm AS builder

ENV PIP_DISABLE_PIP_VERSION_CHECK=1 \
PIP_NO_CACHE_DIR=1
Expand All @@ -26,7 +26,7 @@ RUN pip install --upgrade pip setuptools wheel \
# ---------------------------------------------------------------------------
# Runtime
# ---------------------------------------------------------------------------
FROM python:3.12-slim-bookworm AS runtime
FROM python:3.14-slim-bookworm AS runtime

# WeasyPrint renders PDFs through Pango/cairo rather than a browser, so these
# native libraries are what make PDF export work. Without them the app still
Expand Down
Loading