From bffd8f39903a07202b0f069bf7f59911edf3950b Mon Sep 17 00:00:00 2001 From: sickcodes Date: Mon, 25 Jan 2021 13:11:48 +0000 Subject: [PATCH] [QOL] Fix auto image building wget log overload --- Dockerfile.auto | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile.auto b/Dockerfile.auto index 10a9af0..cdd3cf4 100644 --- a/Dockerfile.auto +++ b/Dockerfile.auto @@ -95,8 +95,9 @@ ARG IMAGE_URL='https://images2.sick.codes/mac_hdd_ng_auto.img' # use the COMPLETE arg, for a complete image, ready to boot. # otherwise use your own image: -v "$PWD/disk.img":/image RUN if [[ "${COMPLETE}" ]]; then \ - echo "Downloading 20GB+ image... Press Ctrl+C to abort." \ - ; wget --no-dns-cache \ + echo "Downloading 20GB+ image... This step might take a while... Press Ctrl+C if you want to abort." \ + ; wget --no-verbose \ + --no-dns-cache \ --no-check-certificate \ --output-document=/home/arch/OSX-KVM/mac_hdd_ng.img \ "${IMAGE_URL}" \