From 902a80aa32060d23232938ca3a221e41527d11b2 Mon Sep 17 00:00:00 2001 From: king-dopey Date: Sun, 26 May 2024 22:13:38 -0700 Subject: [PATCH] Update Busybox version in Docker Image --- docker/master-min/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/master-min/Dockerfile b/docker/master-min/Dockerfile index 612b93b7a4..0b0a5b3e8c 100644 --- a/docker/master-min/Dockerfile +++ b/docker/master-min/Dockerfile @@ -28,7 +28,7 @@ RUN apt-get update -qq && \ apt-get dist-upgrade -y && \ apt-get install -y --no-install-recommends locales ca-certificates gnupg2 gcc libc-dev patch wget curl && \ localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8 && \ - curl -o /busybox.deb http://ftp.us.debian.org/debian/pool/main/b/busybox/busybox_1.36.1-6_amd64.deb && \ + curl -o /busybox.deb http://ftp.us.debian.org/debian/pool/main/b/busybox/busybox_1.36.1-7_amd64.deb && \ dpkg -i /busybox.deb && rm /busybox.deb && \ curl -o /usr/local/bin/su-exec.c https://raw.githubusercontent.com/ncopa/su-exec/master/su-exec.c && \ gcc -Wall /usr/local/bin/su-exec.c -o/usr/local/bin/su-exec && \