From f22fdc53e54716a2ab91a5c156630a0e83f038c2 Mon Sep 17 00:00:00 2001 From: Joe Groocock Date: Wed, 2 Jul 2025 12:38:13 +0000 Subject: [PATCH] Bump busybox to 1.37.0 A few smol hacks are needed unfortunately else the build fails. Signed-off-by: Joe Groocock --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2debeed..fa654c9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ ARG PLEX_VER=1.41.8.9834-071366d65 -ARG BUSYBOX_VER=1.36.1 +ARG BUSYBOX_VER=1.37.0 ARG SU_EXEC_VER=0.4 ARG TINI_VER=0.19.0 ARG ZLIB_VER=1.3.1 @@ -92,7 +92,10 @@ WORKDIR /tmp/busybox RUN curl -fsSL https://busybox.net/downloads/busybox-${BUSYBOX_VER}.tar.bz2 \ | tar xj --strip-components=1 \ + && curl -fsS https://git.busybox.net/busybox/patch/?id=bf57f732a5b6842f6fa3e0f90385f039e5d6a92c | git apply \ && make defconfig \ + # https://lists.busybox.net/pipermail/busybox-cvs/2024-January/041752.html + && sed -i 's/CONFIG_TC=y/# CONFIG_TC is not set/' .config \ && make \ && install -Dm755 busybox "$OUTPUT/usr/bin/busybox" \ # "Install" busybox, creating symlinks to all binaries it provides