diff options
| author | hexcoder- <heiko@hexco.de> | 2020-08-03 15:17:47 +0200 |
|---|---|---|
| committer | hexcoder- <heiko@hexco.de> | 2020-08-03 15:17:47 +0200 |
| commit | 55bd24b0c737b5e89b82dc01f322e4797164c4f1 (patch) | |
| tree | b4f95abd84843c63cdfc77a32ea0f6c28c541447 /Dockerfile | |
| parent | f18c2eb8ae0b2d6c0d4147684b8efcaa1a0b2aae (diff) | |
| parent | 898353c87ae2b7e212e1012e847f02f8e18f9428 (diff) | |
| download | afl++-55bd24b0c737b5e89b82dc01f322e4797164c4f1.tar.gz | |
Merge branch 'dev' of https://github.com/AFLplusplus/AFLplusplus into dev
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -50,13 +50,15 @@ ENV LLVM_CONFIG=llvm-config-11 ENV AFL_SKIP_CPUFREQ=1 RUN git clone https://github.com/vanhauser-thc/afl-cov /afl-cov -RUN cd /afl-cov && make install +RUN cd /afl-cov && make install && cd .. COPY . /AFLplusplus WORKDIR /AFLplusplus RUN export REAL_CXX=g++-10 && export CC=gcc-10 && \ - export CXX=g++-10 && make clean && make distrib && make install && make clean + export CXX=g++-10 && make clean && \ + make distrib && make install && make clean RUN echo 'alias joe="jupp --wordwrap"' >> ~/.bashrc - +RUN echo 'export PS1="[afl++]$PS1"' >> ~/.bashrc +ENV IS_DOCKER="1" |
