From 772ae53548ccc8fdc0efe872429f11fa5cf99bb6 Mon Sep 17 00:00:00 2001 From: Tim Hockin Date: Sun, 10 Mar 2024 10:44:33 -0700 Subject: [PATCH] Use bash instead of dash It's actually slightly smaller. --- Dockerfile.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile.in b/Dockerfile.in index dadb69e..249cf6f 100644 --- a/Dockerfile.in +++ b/Dockerfile.in @@ -55,7 +55,7 @@ RUN mkdir -p {ARG_STAGING} COPY stage_binaries.sh / RUN /stage_binaries.sh -o {ARG_STAGING} \ -p base-files \ - -p dash \ + -p bash \ -p coreutils \ -p git \ -p openssh-client \ @@ -69,6 +69,7 @@ RUN /stage_binaries.sh -o {ARG_STAGING} \ -f /etc/os-release \ -f /etc/passwd \ -f /tmp +RUN ln -s /bin/bash {ARG_STAGING}/bin/sh # Not sure why this is not set up automatically FROM scratch as intermediate