Merge pull request #552 from thockin/v3-apt-dash-q

v3: Add -q to apt-get commands
This commit is contained in:
Kubernetes Prow Robot 2022-07-02 03:55:24 -07:00 committed by GitHub
commit 055a886bf1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -51,18 +51,18 @@ FROM {ARG_FROM} as prep
RUN echo "deb http://deb.debian.org/debian/ buster-backports main contrib" > \ RUN echo "deb http://deb.debian.org/debian/ buster-backports main contrib" > \
/etc/apt/sources.list.d/backports.list /etc/apt/sources.list.d/backports.list
RUN apt-get update RUN apt-get -q -y update
RUN apt-get -y upgrade RUN apt-get -q -y upgrade
RUN apt-get -y install --no-install-recommends \ RUN apt-get -q -y install --no-install-recommends \
ca-certificates \ ca-certificates \
coreutils \ coreutils \
socat \ socat \
openssh-client \ openssh-client \
git git
# We want a newer git than the norm. # 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 git
RUN apt-get -y autoremove RUN apt-get -q -y autoremove
RUN rm -rf /var/lib/apt/lists/* RUN rm -rf /var/lib/apt/lists/*
# By default we will run as this user... # By default we will run as this user...