From 6af3b4b082de5657bd788aa890b1fe375ac9c44d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Jul 2026 02:10:50 +0000 Subject: [PATCH] chore(deps): bump python in the minor-and-patch group across 1 directory Bumps the minor-and-patch group with 1 update in the / directory: python. Updates `python` from 3.10-slim to 3.14-slim --- updated-dependencies: - dependency-name: python dependency-version: 3.14-slim dependency-type: direct:production dependency-group: minor-and-patch ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1bd4aef..2926540 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ # ============================================================================= # Stage 1: Build stage # ============================================================================= -FROM python:3.10-slim as builder +FROM python:3.14-slim as builder WORKDIR /app @@ -40,7 +40,7 @@ RUN pip install --no-cache-dir -e . # ============================================================================= # Stage 2: Production runtime # ============================================================================= -FROM python:3.10-slim as production +FROM python:3.14-slim as production # Security: Run as non-root user RUN groupadd --gid 1000 patas && \