Use wget --no-verbose to prevent build buffer overload in the hub.docker.com build log

This commit is contained in:
sickcodes 2021-02-03 03:17:40 +00:00
parent 34f1c04880
commit 7a04945aae

View File

@ -110,7 +110,7 @@ ARG IMAGE_URL='https://images2.sick.codes/mac_hdd_ng_auto.img'
RUN if [[ "${COMPLETE}" ]]; then \
echo "Downloading 20GB+ image... This step might take a while... Press Ctrl+C if you want to abort." \
; rm -f /home/arch/OSX-KVM/mac_hdd_ng.img \
&& wget -O /home/arch/OSX-KVM/mac_hdd_ng.img "${IMAGE_URL}" \
&& wget --no-verbose -O /home/arch/OSX-KVM/mac_hdd_ng.img "${IMAGE_URL}" \
; fi
RUN mv ./Launch-nopicker.sh ./Launch.sh