From 1f1eb0b0d6bc69e8ae82a375a9f056208497270d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 5 Mar 2026 11:29:49 +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.builder | 2 +- Dockerfile.production | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.builder b/Dockerfile.builder index 71f17d95..36885651 100644 --- a/Dockerfile.builder +++ b/Dockerfile.builder @@ -1,7 +1,7 @@ # Multi-purpose builder image for HyperCode project # This image can be used for builds, tests, and CI/CD pipelines -FROM python:3.11-slim as base +FROM python:3.14-slim as base # Install system dependencies RUN apt-get update && apt-get install -y \ diff --git a/Dockerfile.production b/Dockerfile.production index 8c466b0d..eadb509a 100644 --- a/Dockerfile.production +++ b/Dockerfile.production @@ -3,7 +3,7 @@ # ==================== BASE STAGE ==================== # Shared foundation for all production stages -FROM python:3.11-slim as base +FROM python:3.14-slim as base # Install system dependencies in a single layer with cache cleanup RUN apt-get update && apt-get install -y --no-install-recommends \