Skip to content

Commit 984894f

Browse files
committed
build: upgrade busybox
1 parent 5fec814 commit 984894f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ RUN export ARCH=$([[ "$(uname -m)" == "aarch64" ]] && echo "arm64" || echo "amd6
1111

1212
FROM debian:bookworm-20250908-slim AS prod
1313
RUN apt-get update -y
14-
# install busybox by building source until it's unavailable by apt-get for v1.36.1 ad no need to link [[
14+
# install busybox by building source until it's unavailable by apt-get for v1.37.0 ad no need to link [[
1515
RUN apt-get install --no-install-recommends wget build-essential -y && \
16-
wget --no-check-certificate https://busybox.net/downloads/busybox-1.36.1.tar.bz2 && \
17-
tar -xvjf busybox-1.36.1.tar.bz2 && \
18-
cd busybox-1.36.1 && \
16+
wget --no-check-certificate https://busybox.net/downloads/busybox-1.37.0.tar.bz2 && \
17+
tar -xvjf busybox-1.37.0.tar.bz2 && \
18+
cd busybox-1.37.0 && \
1919
make defconfig && \
2020
make && \
2121
make CONFIG_PREFIX="/" install

0 commit comments

Comments
 (0)