From 733103cefdeba7f2aaafcdd4be6c9a7085010e2f Mon Sep 17 00:00:00 2001 From: Eric Nemchik Date: Sun, 30 Jul 2023 10:09:13 -0500 Subject: [PATCH] Move busybox install to pacstrap-stage Signed-off-by: Eric Nemchik --- Dockerfile | 4 +--- Dockerfile.aarch64 | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9cb2fcd..737331d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -48,6 +48,7 @@ RUN \ pacman -r /root-out -Sy --noconfirm \ archlinux-keyring \ bash \ + busybox \ coreutils \ curl \ findutils \ @@ -109,9 +110,6 @@ ENV PS1="$(whoami)@$(hostname):$(pwd)\\$ " \ PATH="/lsiopy/bin:$PATH" RUN \ - echo "**** install runtime packages ****" && \ - pacman -Sy --noconfirm \ - busybox && \ echo "**** create abc user and make our folders ****" && \ groupadd -g 1000 users && \ useradd -u 911 -U -d /config -s /bin/false abc && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 85fc0bf..2cb61ad 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -49,6 +49,7 @@ RUN \ pacman -r /root-out -Sy --noconfirm \ archlinuxarm-keyring \ bash \ + busybox \ coreutils \ curl \ findutils \ @@ -110,9 +111,6 @@ ENV PS1="$(whoami)@$(hostname):$(pwd)\\$ " \ PATH="/lsiopy/bin:$PATH" RUN \ - echo "**** install runtime packages ****" && \ - pacman -Sy --noconfirm \ - busybox && \ echo "**** create abc user and make our folders ****" && \ groupadd -g 1000 users && \ useradd -u 911 -U -d /config -s /bin/false abc && \