Use bash instead of dash

It's actually slightly smaller.
This commit is contained in:
Tim Hockin 2024-03-10 10:44:33 -07:00
parent 3f817b201d
commit 772ae53548
1 changed files with 2 additions and 1 deletions

View File

@ -55,7 +55,7 @@ RUN mkdir -p {ARG_STAGING}
COPY stage_binaries.sh / COPY stage_binaries.sh /
RUN /stage_binaries.sh -o {ARG_STAGING} \ RUN /stage_binaries.sh -o {ARG_STAGING} \
-p base-files \ -p base-files \
-p dash \ -p bash \
-p coreutils \ -p coreutils \
-p git \ -p git \
-p openssh-client \ -p openssh-client \
@ -69,6 +69,7 @@ RUN /stage_binaries.sh -o {ARG_STAGING} \
-f /etc/os-release \ -f /etc/os-release \
-f /etc/passwd \ -f /etc/passwd \
-f /tmp -f /tmp
RUN ln -s /bin/bash {ARG_STAGING}/bin/sh # Not sure why this is not set up automatically
FROM scratch as intermediate FROM scratch as intermediate