From d2222aff2b6a3943486da6c5ce7807622d2e52c2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 19 Nov 2025 09:33:05 +0000 Subject: [PATCH] chore(deps): bump python from 3.11-slim to 3.14-slim Bumps python from 3.11-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(-) diff --git a/Dockerfile b/Dockerfile index f13f857..fc1c18b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ # Stage 1: Builder # ============================================================================ -FROM python:3.11-slim AS builder +FROM python:3.14-slim AS builder # Install build dependencies RUN apt-get update && apt-get install -y \ @@ -52,7 +52,7 @@ RUN pip install --no-cache-dir . # Stage 2: Runtime # ============================================================================ -FROM python:3.11-slim AS runtime +FROM python:3.14-slim AS runtime # Install runtime dependencies only RUN apt-get update && apt-get install -y \