-
Notifications
You must be signed in to change notification settings - Fork 425
DL3047
José Lorenzo Rodríguez edited this page Mar 16, 2021
·
1 revision
FROM ubuntu:20
RUN wget https://example.com/big_file.tar
FROM ubuntu:20
RUN wget --progress=dot:giga https://example.com/big_file.tar
FROM ubuntu:20
RUN wget -nv https://example.com/big_file.tar
wget
without flag --progress
will result in excessively bloated build logs when downloading larger files. That's because it outputs a line for each fraction of a percentage point while downloading a big file.