Add -q to apt-get commands
This commit is contained in:
parent
5e35650bc7
commit
1c9d30fd72
|
|
@ -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...
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue