diff --git a/Dockerfile b/Dockerfile index 1a24e00..9b98c95 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 @@ -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