From 4db7d96e9aee0818a3f5967814a4e6ec5e9a73f1 Mon Sep 17 00:00:00 2001 From: Marcin Rataj Date: Mon, 11 Aug 2025 08:12:48 +0200 Subject: [PATCH] fix(ci): switch to debian:bookworm-slim Fixes https://github.com/ipfs/kubo/actions/runs/16871954614/job/47788281700?pr=10905#step:5:8 - Debian 13 "Trixie" became stable on August 9, 2025 (just 2 days ago!) - CI gets Debian 13 (GLIBC 2.38+) when pulling debian:stable-slim - Busybox still has GLIBC 2.36 - The tini binary compiled on Debian 13 requires GLIBC 2.38 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 98e44a1b6..d2924f2b7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,7 +27,7 @@ RUN cd $SRC_DIR \ # Using Debian Buster because the version of busybox we're using is based on it # and we want to make sure the libraries we're using are compatible. That's also # why we're running this for the target platform. -FROM debian:stable-slim AS utilities +FROM debian:bookworm-slim AS utilities RUN set -eux; \ apt-get update; \ apt-get install -y \