From 1be9b4945f45ea861f75bbfc52de65320a226d02 Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Mon, 10 Sep 2018 17:04:32 +0200 Subject: [PATCH] Quiet(er) APT --- docker-image-build-task.sh | 4 ++-- docker/apt-install.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docker-image-build-task.sh b/docker-image-build-task.sh index 96149cc0056..6f927521804 100755 --- a/docker-image-build-task.sh +++ b/docker-image-build-task.sh @@ -2,7 +2,7 @@ image="$1" -apt-get update -apt-get install -y --no-install-recommends docker.io +apt-get update -q +apt-get install -qy --no-install-recommends docker.io docker version ./docker/build.sh "$image" diff --git a/docker/apt-install.sh b/docker/apt-install.sh index fdf7f860eb7..b1a78dda3d7 100755 --- a/docker/apt-install.sh +++ b/docker/apt-install.sh @@ -1,7 +1,7 @@ #!/bin/sh -apt-get update -apt-get install -y --no-install-recommends "$@" +apt-get update -q +apt-get install -qy --no-install-recommends "$@" # Purge apt-get caches to minimize image size apt-get auto-remove -y