From 1713f65d27e71f897eb22e46902466798c822fef Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Sep 2025 04:48:33 +0000 Subject: [PATCH] chore(deps): bump python from 3.12-slim to 3.13-slim Bumps python from 3.12-slim to 3.13-slim. --- updated-dependencies: - dependency-name: python dependency-version: 3.13-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 1cfdb14..ae216eb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ # ============================================================================== # On utilise une image complète pour la construction, mais on la nomme "builder". # Son contenu ne sera pas dans l'image finale. -FROM python:3.12-slim as builder +FROM python:3.13-slim as builder # Définir le répertoire de travail WORKDIR /app @@ -30,7 +30,7 @@ RUN uv pip install --no-cache-dir . # Étape 2: "Final" - Environnement d'exécution # ============================================================================== # On repart d'une image "slim" propre et légère. -FROM python:3.12-slim +FROM python:3.13-slim # Définir les arguments ARG PORT=8000