diff options
author | vanhauser-thc <vh@thc.org> | 2021-02-14 21:47:42 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2021-02-14 21:47:42 +0100 |
commit | 95561ec5a7f7cd87d97c6e2882699c144a959172 (patch) | |
tree | 1ad1665d92e2d32cfb7eed027991dc129b058cd8 | |
parent | fe9da707058b3b2cb1812c3d635d3bb43fe33d13 (diff) | |
download | afl++-95561ec5a7f7cd87d97c6e2882699c144a959172.tar.gz |
dockerfile fix
-rw-r--r-- | Dockerfile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile index 0c4556ca..b293edf4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -48,15 +48,15 @@ RUN update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-10 0 ENV LLVM_CONFIG=llvm-config-12 ENV AFL_SKIP_CPUFREQ=1 +ENV AFL_I_DONT_CARE_ABOUT_MISSING_CRASHES=1 -RUN git clone https://github.com/vanhauser-thc/afl-cov /afl-cov +RUN git clone --depth=1 https://github.com/vanhauser-thc/afl-cov /afl-cov RUN cd /afl-cov && make install && cd .. COPY . /AFLplusplus WORKDIR /AFLplusplus -RUN export export CC=gcc-10 && \ - export CXX=g++-10 && make clean && \ +RUN export CC=gcc-10 && export CXX=g++-10 && make clean && \ make distrib && make install && make clean RUN echo 'alias joe="jupp --wordwrap"' >> ~/.bashrc |