From c00c7017435a40a4bb64cd4a82e423064da5ed57 Mon Sep 17 00:00:00 2001 From: DavidKorczynski Date: Tue, 26 Jul 2022 21:48:31 +0100 Subject: [PATCH] wuffs: fix build by fixing corpus link (#8084) Existing corpus link is no longer accessible. Switching to a reliable source. Fixing this also to unbreak Fuzz Introspector tests here https://github.com/ossf/fuzz-introspector/issues/412#issuecomment-1195537545 --- projects/wuffs/Dockerfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/projects/wuffs/Dockerfile b/projects/wuffs/Dockerfile index c495515a2..ed0c903b9 100644 --- a/projects/wuffs/Dockerfile +++ b/projects/wuffs/Dockerfile @@ -30,10 +30,9 @@ RUN mkdir bmpsuite_corpus RUN unzip -j bmpsuite.zip -d bmpsuite_corpus RUN rm bmpsuite.zip -RUN wget -O pngsuite.tgz http://www.schaik.com/pngsuite/PngSuite-2017jul19.tgz -RUN mkdir pngsuite_corpus -RUN tar xf pngsuite.tgz --one-top-level=pngsuite_corpus -RUN rm pngsuite.tgz +RUN mkdir pngsuite_corpus && \ + git clone --depth=1 https://github.com/MozillaSecurity/fuzzdata && \ + cp ./fuzzdata/samples/png/common/*.png ./pngsuite_corpus RUN wget -O rapidjson.zip "https://github.com/guidovranken/rapidjson-fuzzers/blob/master/fuzzer_seed_corpus.zip?raw=true" RUN mkdir rapidjson_corpus