Skip to content

Commit 5000404

Browse files
committed
get busybox docker working
1 parent 5210f09 commit 5000404

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docker/Dockerfile.busybox

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM debian:bullseye-slim AS stage0
1+
FROM debian:buster-slim AS stage0
22
COPY ./products/* /pkgx/
33
RUN install -m 755 /pkgx/$(uname -m) /usr/local/bin/pkgx
44
RUN install -m 755 /pkgx/pkgm /usr/local/bin/pkgm
@@ -10,8 +10,8 @@ COPY --from=stage0 /usr/local/bin/pkgx /usr/local/bin/pkgm /usr/local/bin/
1010
# pkgx packages also need libgcc
1111
COPY --from=stage0 /lib/x86_64-linux-gnu/libgcc_s.so.1 /lib/libgcc_s.so.1
1212
# these are part of glibc but for some reason this image doesn’t have them
13-
COPY --from=stage0 /lib/x86_64-linux-gnu/librt.so.1 /lib/librt.so.1
14-
COPY --from=stage0 /lib/x86_64-linux-gnu/libdl.so.2 /lib/libdl.so.2
13+
COPY --from=stage0 /lib/x86_64-linux-gnu/librt-2.28.so /lib/librt.so.1
14+
COPY --from=stage0 /lib/x86_64-linux-gnu/libdl-2.28.so /lib/libdl.so.2
1515
# we need env for `pkgm`
1616
COPY --from=stage0 /usr/bin/env /usr/bin/env
1717

0 commit comments

Comments
 (0)