From 8502685f53bf551ec8c2c948581b72adec67f2ec Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 18 Feb 2026 06:43:43 +0000 Subject: [PATCH] docker(deps): Bump python in /infrastructure/docker 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] --- infrastructure/docker/Dockerfile.api-python | 4 ++-- infrastructure/docker/Dockerfile.worker | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/infrastructure/docker/Dockerfile.api-python b/infrastructure/docker/Dockerfile.api-python index 773e835..d4bcfcc 100644 --- a/infrastructure/docker/Dockerfile.api-python +++ b/infrastructure/docker/Dockerfile.api-python @@ -1,4 +1,4 @@ -FROM python:3.11-slim AS builder +FROM python:3.14-slim AS builder # Set environment variables ENV PYTHONDONTWRITEBYTECODE=1 \ @@ -47,7 +47,7 @@ COPY packages/ml/ecotrack_ml packages/ml/ecotrack_ml/ COPY apps/api-python/ecotrack_api apps/api-python/ecotrack_api/ # Create a clean runtime image -FROM python:3.11-slim +FROM python:3.14-slim # Set environment variables ENV PYTHONDONTWRITEBYTECODE=1 \ diff --git a/infrastructure/docker/Dockerfile.worker b/infrastructure/docker/Dockerfile.worker index c418354..fa79265 100644 --- a/infrastructure/docker/Dockerfile.worker +++ b/infrastructure/docker/Dockerfile.worker @@ -1,4 +1,4 @@ -FROM python:3.11-slim AS builder +FROM python:3.14-slim AS builder # Set environment variables ENV PYTHONDONTWRITEBYTECODE=1 \ @@ -47,7 +47,7 @@ COPY packages/ml/ecotrack_ml packages/ml/ecotrack_ml/ COPY apps/worker/ecotrack_worker apps/worker/ecotrack_worker/ # Create a clean runtime image -FROM python:3.11-slim +FROM python:3.14-slim # Set environment variables ENV PYTHONDONTWRITEBYTECODE=1 \