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