mirror of https://github.com/google/oss-fuzz.git
[libaom] use ADD to retrieve file (#1964)
* [libaom] use ADD to retrieve file libwebp uses ADD here which appears to be the canonical way to download a file. * Update Dockerfile
This commit is contained in:
parent
7551f34eba
commit
23dd904766
|
@ -18,6 +18,6 @@ FROM gcr.io/oss-fuzz-base/base-builder
|
||||||
MAINTAINER urvang@google.com
|
MAINTAINER urvang@google.com
|
||||||
RUN apt-get update && apt-get install -y cmake yasm wget
|
RUN apt-get update && apt-get install -y cmake yasm wget
|
||||||
RUN git clone https://aomedia.googlesource.com/aom
|
RUN git clone https://aomedia.googlesource.com/aom
|
||||||
RUN wget -q https://storage.googleapis.com/aom-test-data/fuzzer/dec_fuzzer_seed_corpus.zip
|
ADD https://storage.googleapis.com/aom-test-data/fuzzer/dec_fuzzer_seed_corpus.zip $SRC/
|
||||||
COPY build.sh av1_dec_fuzzer.cc av1_dec_fuzzer.dict $SRC/
|
COPY build.sh av1_dec_fuzzer.cc av1_dec_fuzzer.dict $SRC/
|
||||||
WORKDIR aom
|
WORKDIR aom
|
||||||
|
|
Loading…
Reference in New Issue