From 40a6ca44e4d74149c87d53cf7e9d16b0d0cef575 Mon Sep 17 00:00:00 2001 From: anantadwi13 Date: Tue, 26 May 2026 04:26:38 +0700 Subject: [PATCH] fix(sdk): bump python SDK docker base to slim-trixie Debian buster reached EOL in 2024-06 and its repositories are now in the archive, so apt-get update in python/sdk/Dockerfile fails during the release / publish-python-sdk-docker job. Bump the base to trixie (current Debian stable) to unblock the release pipeline. --- python/sdk/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/sdk/Dockerfile b/python/sdk/Dockerfile index 51e2a200b..f51d38b99 100644 --- a/python/sdk/Dockerfile +++ b/python/sdk/Dockerfile @@ -1,5 +1,5 @@ ARG PYTHON_VERSION=3.9 -FROM python:${PYTHON_VERSION}-slim-buster +FROM python:${PYTHON_VERSION}-slim-trixie LABEL org.opencontainers.image.source https://github.com/caraml-dev/merlin