From 2c574c46e3e1c63499d2ce247831c0473d645347 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 28 Jun 2026 17:49:34 +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] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) mode change 100755 => 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile old mode 100755 new mode 100644 index ee7b61d..8ebd872 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM ghcr.io/astral-sh/uv:0.11 AS uv # ---- builder ---------------------------------------------------------------- -FROM python:3.13-slim AS builder +FROM python:3.14-slim AS builder COPY --from=uv /uv /uvx /bin/ @@ -25,7 +25,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \ uv sync --locked --no-dev # ---- runtime ---------------------------------------------------------------- -FROM python:3.13-slim AS runtime +FROM python:3.14-slim AS runtime LABEL maintainer="baptiste.bonnaudet@gmail.com"