From 38b9a7023dd59c5a6be0b23b55390509f35ec4b3 Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Mon, 10 Nov 2025 20:25:06 +0100 Subject: [PATCH] OCI: Use Debian Trixie --- release/oci/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/release/oci/Dockerfile b/release/oci/Dockerfile index f1a8552..1693d77 100644 --- a/release/oci/Dockerfile +++ b/release/oci/Dockerfile @@ -1,5 +1,5 @@ # Stage 1: Build wheel package -FROM python:3.13-slim-bookworm AS build +FROM python:3.13-slim-trixie AS build ARG BUILD=/usr/src @@ -21,7 +21,7 @@ COPY . ${BUILD} RUN python -m build --wheel ${BUILD} -FROM python:3.13-slim-bookworm AS package +FROM python:3.13-slim-trixie AS package ARG BUILD=/usr/src