From 0753bd511ffbb00fff5b4f20f3f0de0896f553c0 Mon Sep 17 00:00:00 2001 From: Tim Hockin Date: Mon, 26 Jun 2023 13:15:16 -0700 Subject: [PATCH] Use --no-install-recommends on bash install --- Dockerfile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.in b/Dockerfile.in index 6aa1f5f..cb82a92 100644 --- a/Dockerfile.in +++ b/Dockerfile.in @@ -50,7 +50,7 @@ ARG FORCE_REBUILD=0 RUN apt-get -y -qq -o Dpkg::Use-Pty=0 update RUN apt-get -y -qq -o Dpkg::Use-Pty=0 -y upgrade -RUN apt-get -y -qq -o Dpkg::Use-Pty=0 install bash # for the staging scripts and ldd +RUN apt-get -y -qq -o Dpkg::Use-Pty=0 install --no-install-recommends bash # for the staging scripts and ldd RUN mkdir -p {ARG_STAGING} COPY stage_binaries.sh / RUN /stage_binaries.sh -o {ARG_STAGING} \