From 15a282f9d29ed333ec5799054a26046c2df3ff7f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 13 Aug 2026 18:06:09 +0000 Subject: [PATCH] image: bump python from 3.12-slim to 3.14-slim Bumps python from 3.12-slim to 3.14-slim. --- updated-dependencies: - dependency-name: python dependency-version: 3.14-slim 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 e2fd438..02e1368 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ # pointer somebody else moves: two builds of the same commit can differ, which makes a reproducible # build a coincidence. The digest is the manifest list, so buildx still picks amd64 or arm64 by # itself. Dependabot proposes the bump; a human takes it. -FROM python:3.12-slim@sha256:646fb0bca3dd3ea1bcc6feb72c17ed16eed6e10cffc732fcc1478bd3e7f02d7b AS build +FROM python:3.14-slim@sha256:ce40764625a4ff50df3548277632e7f96c4e77fe75fa848aae9885476e7df5a4 AS build ENV PIP_DISABLE_PIP_VERSION_CHECK=1 \ PIP_NO_CACHE_DIR=1 @@ -23,7 +23,7 @@ RUN python -m venv /opt/venv \ && /opt/venv/bin/pip install ".${EXTRAS}" # --- runtime: no build tools, no source tree, no root ------------------------ -FROM python:3.12-slim@sha256:646fb0bca3dd3ea1bcc6feb72c17ed16eed6e10cffc732fcc1478bd3e7f02d7b AS runtime +FROM python:3.14-slim@sha256:ce40764625a4ff50df3548277632e7f96c4e77fe75fa848aae9885476e7df5a4 AS runtime ENV PYTHONUNBUFFERED=1 \ PYTHONDONTWRITEBYTECODE=1 \