From 3c7057efc27df7ab8ca971740996621348d0362e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 20 Oct 2025 14:00:23 +0000 Subject: [PATCH] Update python Docker tag to v3.14 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 19d1119..c3047bd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Base image for building the environment -FROM python:3.12 AS env-builder +FROM python:3.14 AS env-builder ARG VERSION @@ -81,7 +81,7 @@ RUN --mount=type=tmpfs,target=/root/.cargo \ find . -type f \( -name '__pycache__' -o -name '*.pyc' -o -name '*.pyo' \) -exec bash -c 'echo "Deleting {}"; rm -f {}' \; # Final lightweight image -FROM python:3.12-slim-bookworm AS final +FROM python:3.14-slim-bookworm AS final # Set up a user for the final image ENV GOSU_VERSION=1.17 \