fix(ci): switch to debian:bookworm-slim
Some checks are pending
Spell Check / spellcheck (push) Waiting to run

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
This commit is contained in:
Marcin Rataj 2025-08-11 08:12:48 +02:00
parent f9e892d974
commit 4db7d96e9a
No known key found for this signature in database
GPG Key ID: 222B6784D5A79E42

View File

@ -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 \