From 61483edaf633ab07933a6d5121509e5a97886efc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Aug 2026 00:49:36 +0000 Subject: [PATCH] docker: bump python from 3.12-slim-bookworm to 3.14-slim-bookworm Bumps python from 3.12-slim-bookworm to 3.14-slim-bookworm. --- updated-dependencies: - dependency-name: python dependency-version: 3.14-slim-bookworm dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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