From 23c4e8367f86e0f9c27d3227b16bbbfe6766505a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 24 Apr 2026 06:19:34 +0000 Subject: [PATCH] deps: bump python in the monthly-docker group Bumps the monthly-docker group with 1 update: python. Updates `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 dependency-group: monthly-docker ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index dbba9b3..5ec0e90 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Use official Python runtime pinned by digest -FROM python:3.12-slim-bookworm@sha256:d97792894a6a4162cae14da44542a83c75e56c77a27b92d58f3f83b7bc961292 AS builder +FROM python:3.14-slim-bookworm@sha256:2e256d0381371566ed96980584957ed31297f437569b79b0e5f7e17f2720e53a AS builder WORKDIR /build @@ -11,7 +11,7 @@ RUN apt-get update \ COPY requirements.txt /build/requirements.txt RUN pip wheel --no-cache-dir --wheel-dir /build/wheels -r /build/requirements.txt -FROM python:3.12-slim-bookworm@sha256:d97792894a6a4162cae14da44542a83c75e56c77a27b92d58f3f83b7bc961292 +FROM python:3.14-slim-bookworm@sha256:2e256d0381371566ed96980584957ed31297f437569b79b0e5f7e17f2720e53a WORKDIR /app