From 4e28a6027c97c641bc78b6436fc46da49d40b4af Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 09:54:59 +0000 Subject: [PATCH] build(deps)(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 583037b..66e2a1c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # STAGE 1 — BUILDER # Compilación limpia, reproducible, sin root # ============================================ -FROM python:3.11-slim AS builder +FROM python:3.14-slim AS builder ENV PYTHONDONTWRITEBYTECODE=1 \ PYTHONUNBUFFERED=1 @@ -27,7 +27,7 @@ RUN pip install --upgrade pip wheel && \ # STAGE 2 — RUNTIME ULTRALIGHT # Cero herramientas innecesarias, zero trust # ============================================ -FROM python:3.11-slim AS runtime +FROM python:3.14-slim AS runtime ENV PYTHONDONTWRITEBYTECODE=1 \ PYTHONUNBUFFERED=1 \