From 66e33fbb767c08fc504774c5d55d27886cb5d353 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 21 Jul 2026 00:53:59 +0000 Subject: [PATCH] chore(deps): 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] --- Containerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Containerfile b/Containerfile index 26aa47c..3784353 100644 --- a/Containerfile +++ b/Containerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1.7 # Builder stage — installs deps with uv into /app/.venv -FROM python:3.13-slim AS builder +FROM python:3.14-slim AS builder ENV UV_LINK_MODE=copy \ UV_COMPILE_BYTECODE=1 \ @@ -24,7 +24,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \ # Runtime stage — minimal, OpenShift-friendly (random UID, group 0) -FROM python:3.13-slim AS runtime +FROM python:3.14-slim AS runtime # Release workflow injects the semver tag here so logs/responses carry the # real version. Defaults to 'dev' for local builds where no version is set.