aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/base-images
diff options
context:
space:
mode:
authorGravatar Max Moroz <mmoroz@chromium.org>2019-08-27 09:53:48 -0700
committerGravatar GitHub <noreply@github.com>2019-08-27 09:53:48 -0700
commitb3726e9d204ce7cb9ac9cd310bd65fe3e48dc56c (patch)
tree90512e68ae2469f2a524d332d91109ed0e78ac5d /infra/base-images
parent4159623ecd7631f32f7d0b629d95ff1b9bb1ed54 (diff)
[infra] Use stable version of AFL from the upstream repo. (#2767)
Diffstat (limited to 'infra/base-images')
-rw-r--r--infra/base-images/base-builder/Dockerfile6
1 files changed, 1 insertions, 5 deletions
diff --git a/infra/base-images/base-builder/Dockerfile b/infra/base-images/base-builder/Dockerfile
index 87c3bb09..cc42474a 100644
--- a/infra/base-images/base-builder/Dockerfile
+++ b/infra/base-images/base-builder/Dockerfile
@@ -93,11 +93,7 @@ ENV FUZZER_LDFLAGS ""
WORKDIR $SRC
-ADD http://lcamtuf.coredump.cx/afl/releases/afl-latest.tgz $SRC/
-RUN mkdir afl && \
- cd afl && \
- tar -xzv --strip-components=1 -f $SRC/afl-latest.tgz && \
- rm -rf $SRC/afl-latest.tgz
+RUN git clone -b stable https://github.com/google/AFL.git afl
ADD https://github.com/google/honggfuzz/archive/oss-fuzz.tar.gz $SRC/
RUN mkdir honggfuzz && \