From bea2954d845ea0a26eb76b98b8fdf5336af11268 Mon Sep 17 00:00:00 2001 From: Tim Hockin Date: Sat, 18 Jun 2022 12:46:20 -0700 Subject: [PATCH] Add -q to apt-get commands --- Dockerfile.in | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Dockerfile.in b/Dockerfile.in index 53dddf6..bac9a2f 100644 --- a/Dockerfile.in +++ b/Dockerfile.in @@ -49,16 +49,15 @@ ############################################################################# FROM {ARG_FROM} as prep -RUN apt-get update -RUN apt-get -y upgrade -RUN apt-get -y install --no-install-recommends \ +RUN apt-get -q -y update +RUN apt-get -q -y upgrade +RUN apt-get -q -y install --no-install-recommends \ ca-certificates \ coreutils \ socat \ openssh-client \ git -# We want a newer git than the norm. -RUN apt-get -y autoremove +RUN apt-get -q -y autoremove RUN rm -rf /var/lib/apt/lists/* # Add the default UID to /etc/passwd so SSH is satisfied.