From 1c2b9c9171d5c02b0261ea4de1ea427a840663a2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 4 Apr 2026 21:15:08 +0000 Subject: [PATCH] chore(deps): bump python from 3.11-slim to 3.14-slim Dependabot couldn't find the original pull request head commit, 96faac015d18de886cd8c56ecd0e8d701800f8ec. --- Dockerfile.agents-test | 2 +- Dockerfile.builder | 2 +- Dockerfile.production | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile.agents-test b/Dockerfile.agents-test index 03b3e98..436d985 100644 --- a/Dockerfile.agents-test +++ b/Dockerfile.agents-test @@ -4,7 +4,7 @@ # docker compose -f docker-compose.agents-test.yml run agents # docker compose -f docker-compose.agents-test.yml run agents pytest tests/unit/ -v -FROM python:3.11-slim +FROM python:3.14-slim # Keep Python output unbuffered so pytest output streams in real-time ENV PYTHONUNBUFFERED=1 \ diff --git a/Dockerfile.builder b/Dockerfile.builder index 5b6a36d..dfca0da 100644 --- a/Dockerfile.builder +++ b/Dockerfile.builder @@ -4,7 +4,7 @@ ARG NODE_IMAGE=node:20.18.1-bookworm-slim FROM ${NODE_IMAGE} as node -FROM python:3.11-slim-bookworm as base +FROM python:3.14-slim-bookworm as base # Install system dependencies RUN apt-get update && apt-get install -y \ diff --git a/Dockerfile.production b/Dockerfile.production index cb65e6d..cd071af 100644 --- a/Dockerfile.production +++ b/Dockerfile.production @@ -6,7 +6,7 @@ ARG NODE_IMAGE=node:20.18.1-bookworm-slim FROM ${NODE_IMAGE} as node -FROM python:3.11-slim-bookworm as base +FROM python:3.14-slim-bookworm as base # Install system dependencies in a single layer with cache cleanup RUN apt-get update && apt-get install -y --no-install-recommends \