From f41c1d92a1f52a2460f056540d58642246a529a4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 29 Aug 2026 10:15:13 +0000 Subject: [PATCH] Bump python from 3.11-slim to 3.14-slim in /backend 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] --- backend/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index 52c603c..52da435 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -1,5 +1,5 @@ # --- Builder stage: compiles native extensions (psycopg2, cryptography) --- -FROM python:3.11-slim AS builder +FROM python:3.14-slim AS builder ENV PYTHONDONTWRITEBYTECODE=1 ENV PYTHONUNBUFFERED=1 @@ -16,7 +16,7 @@ RUN pip install --no-cache-dir --upgrade pip && \ pip install --no-cache-dir --prefix=/install -r requirements.txt # --- Runtime stage: no compiler toolchain, runs as a non-root user --- -FROM python:3.11-slim +FROM python:3.14-slim ENV PYTHONDONTWRITEBYTECODE=1 ENV PYTHONUNBUFFERED=1