From 1c9d30fd72e87b2bac2ac3a3605d0508fd4da40d Mon Sep 17 00:00:00 2001 From: Tim Hockin Date: Sat, 18 Jun 2022 12:51:43 -0700 Subject: [PATCH] Add -q to apt-get commands --- Dockerfile.in | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile.in b/Dockerfile.in index cfe73b8..152eb0b 100644 --- a/Dockerfile.in +++ b/Dockerfile.in @@ -51,18 +51,18 @@ FROM {ARG_FROM} as prep RUN echo "deb http://deb.debian.org/debian/ buster-backports main contrib" > \ /etc/apt/sources.list.d/backports.list -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 -t buster-backports install --no-install-recommends \ +RUN apt-get -q -y -t buster-backports install --no-install-recommends \ git -RUN apt-get -y autoremove +RUN apt-get -q -y autoremove RUN rm -rf /var/lib/apt/lists/* # By default we will run as this user...