From aa7c7dc73e0b11668d5df1a54f68f99211bc18b3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 30 Jul 2026 19:01:35 +0000 Subject: [PATCH] chore(docker): bump python in /modules/prefect/workers/prefect 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] --- modules/prefect/workers/prefect/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/prefect/workers/prefect/Dockerfile b/modules/prefect/workers/prefect/Dockerfile index da1be4eb..e48f6840 100644 --- a/modules/prefect/workers/prefect/Dockerfile +++ b/modules/prefect/workers/prefect/Dockerfile @@ -1,7 +1,7 @@ # syntax=docker/dockerfile:1.7 # ---------- Base stage: Python 3.11 + build deps ---------- -FROM python:3.11-slim AS base +FROM python:3.14-slim AS base ENV PYTHONDONTWRITEBYTECODE=1 \ PYTHONUNBUFFERED=1 \ @@ -28,7 +28,7 @@ RUN pip install --upgrade pip \ && pip install --prefix=/install . # ---------- Runtime stage ---------- -FROM python:3.11-slim AS runtime +FROM python:3.14-slim AS runtime ENV PYTHONDONTWRITEBYTECODE=1 \ PYTHONUNBUFFERED=1 \