Merge pull request #544 from thockin/v4-apt-dash-q

v4: 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 587af4d522
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 5 deletions

View File

@ -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.