From 66ad07e3bf2936342fe7f6fc971f2380b0195dc6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Oct 2025 08:53:53 +0000 Subject: [PATCH] Bump python from 3.13-slim to 3.14-slim Bumps python from 3.13-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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 71840b4..9191f6a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # This stage prepares the `uv` executable in a way that is compatible with all target architectures. # It starts from a universal python base image to avoid platform-related `FROM` errors. ARG UV_VERSION=0.7.13 -FROM --platform=${TARGETPLATFORM} python:3.13-slim AS uv-builder +FROM --platform=${TARGETPLATFORM} python:3.14-slim AS uv-builder ARG UV_VERSION ARG TARGETARCH # This is used by the script for logging. @@ -14,7 +14,7 @@ RUN --mount=type=cache,target=/root/.cache/pip \ chmod +x /install-uv.sh && /install-uv.sh # builder stage -FROM --platform=${TARGETPLATFORM} python:3.13-slim AS builder +FROM --platform=${TARGETPLATFORM} python:3.14-slim AS builder # Pre-compile Python bytecode and COPY packages from wheel. ENV UV_COMPILE_BYTECODE=1 UV_LINK_MODE=copy @@ -44,7 +44,7 @@ COPY . . RUN --mount=type=cache,target=/root/.cache/uv uv sync --locked --no-dev --no-editable # Runner -FROM --platform=${TARGETPLATFORM} python:3.13-slim AS runner +FROM --platform=${TARGETPLATFORM} python:3.14-slim AS runner # Avoid interactive prompts ENV DEBIAN_FRONTEND=noninteractive