From e2f3bd7f8b407edb9634c878219039675c7f2e45 Mon Sep 17 00:00:00 2001 From: Joe Groocock Date: Sun, 15 Mar 2026 22:10:01 +0000 Subject: [PATCH] Pull busybox patch from github busybox.net seems to have availability issues, often causing builds to fail. This should be a bit more reliable. Signed-off-by: Joe Groocock --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ade0745..d2ca6cf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -94,7 +94,7 @@ 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 \ + && curl -fsS https://github.com/mirror/busybox/commit/bf57f732a5b6842f6fa3e0f90385f039e5d6a92c.patch | 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 \