From ff8c42a0022bc6e847ea382b7b1f184b055c176d Mon Sep 17 00:00:00 2001 From: Pymetheus Date: Mon, 16 Feb 2026 13:45:41 +0100 Subject: [PATCH] chore: bump builder base image to Python 3.14 Update docker/Dockerfile to use ghcr.io/astral-sh/uv:python3.14-bookworm-slim instead of the previous python3.12 tag to adopt Python 3.14 (newer features and security fixes). No other Dockerfile changes were made. --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 0ae0c4d..73de6d8 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,6 +1,6 @@ # This Dockerfile was generated for [[PACKAGE_NAME]] -FROM ghcr.io/astral-sh/uv:python3.12-bookworm-slim AS builder +FROM ghcr.io/astral-sh/uv:python3.14-bookworm-slim AS builder ENV UV_COMPILE_BYTECODE=1 ENV UV_LINK_MODE=copy