From 8cbe559c193d1ca649d8a467d7c3b43acb372849 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 11 Aug 2026 14:33:16 +0000 Subject: [PATCH] deps: bump python from 3.13-slim-trixie to 3.14-slim-trixie Bumps python from 3.13-slim-trixie to 3.14-slim-trixie. --- updated-dependencies: - dependency-name: python dependency-version: 3.14-slim-trixie 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 f6de0b0..34d8b4e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM ghcr.io/astral-sh/uv:0.12.0 AS uv -FROM python:3.13-slim-trixie AS builder +FROM python:3.14-slim-trixie AS builder COPY --from=uv /uv /bin/uv @@ -21,7 +21,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \ uv sync --locked --no-dev --no-editable -FROM python:3.13-slim-trixie AS runtime +FROM python:3.14-slim-trixie AS runtime ENV PATH="/app/.venv/bin:$PATH" \ PYTHONDONTWRITEBYTECODE=1 \