Hide wget output to reduce clutter (#2683)

When using wget to download files in a Dockerfile, the progress output of wget gets completely screwed up, making the build log almost impossible to read. By providing `-q` to wget the output will be hidden.
This commit is contained in:
Markus Holtermann 2019-08-12 00:37:44 +10:00 committed by Abhishek Arya
parent ea2ebaddb1
commit c607487f57
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@
FROM gcr.io/oss-fuzz-base/base-builder
MAINTAINER guidovranken@gmail.com
RUN apt-get install -y build-essential libncursesw5-dev libreadline-dev libssl-dev libgdbm-dev libc6-dev libsqlite3-dev tk-dev libbz2-dev zlib1g-dev libffi-dev wget
RUN wget https://github.com/python/cpython/archive/v3.8.0b2.tar.gz
RUN wget -q https://github.com/python/cpython/archive/v3.8.0b2.tar.gz
RUN git clone --depth 1 https://github.com/guidovranken/django-fuzzers.git
RUN git clone --depth 1 https://github.com/django/django.git
COPY build.sh $SRC/