Move busybox install to pacstrap-stage

Signed-off-by: Eric Nemchik <eric@nemchik.com>
This commit is contained in:
Eric Nemchik 2023-07-30 10:09:13 -05:00
parent 1ad3202c36
commit 733103cefd
No known key found for this signature in database
2 changed files with 2 additions and 6 deletions

View File

@ -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 && \

View File

@ -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 && \