From d0c26d67337fbd88c594ed4e2b4dff55ca18cdca Mon Sep 17 00:00:00 2001 From: Jason Lubken Date: Tue, 2 Jun 2020 18:49:51 -0400 Subject: [PATCH] Quiet apt-get install (dpkg) --- buster.dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buster.dockerfile b/buster.dockerfile index 822e76f..63f7585 100644 --- a/buster.dockerfile +++ b/buster.dockerfile @@ -21,7 +21,7 @@ COPY test ./test RUN \ chmod +x /usr/bin/tini && \ apt-get -qq update --fix-missing && \ - apt-get -qq install -y --no-install-recommends git && \ + apt-get -qq install -y --no-install-recommends git > /dev/null && \ pip install ${IFLAGS} "." && \ apt-get -qq clean && \ apt-get -qq autoremove -y --purge && \