From 8161570d58e28948f6cfc9fdc22accd889826565 Mon Sep 17 00:00:00 2001 From: Joe Groocock Date: Wed, 9 Aug 2017 21:42:28 +0100 Subject: [PATCH] Use correct path to busybox binary --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a04fdf8..18e2b5e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -76,7 +76,7 @@ RUN curl -fL https://busybox.net/downloads/busybox-${BUSYB_VER}.tar.bz2 \ make -j "$(nproc)" && \ cp busybox "${PREFIX}/bin" && \ # "Install" busybox, creating symlinks to all binaries it provides - bin/busybox --list-full | xargs -i ln -s /bin/busybox "${PREFIX}/{}" + ./busybox --list-full | xargs -i ln -s /bin/busybox "${PREFIX}/{}" WORKDIR $PREFIX