@cryptotaxi247 / kubo / commits / 6e3ae8f26

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 (cherry picked from commit 4db7d96e9aee0818a3f5967814a4e6ec5e9a73f1)

Marcin Rataj committed Aug 11, 2025 at 08:12 UTC 6e3ae8f26361f56780211a920edac9f3e8aeac31
1 file changed +1 -1
Dockerfile
+1 -1
@@ -27,7 +27,7 @@ RUN cd $SRC_DIR \
27 # Using Debian Buster because the version of busybox we're using is based on it
28 # and we want to make sure the libraries we're using are compatible. That's also
29 # why we're running this for the target platform.
30 -FROM debian:stable-slim AS utilities
30 +FROM debian:bookworm-slim AS utilities
31 RUN set -eux; \
32 apt-get update; \
33 apt-get install -y \