From 215cbfc5b4c98afccc3150c24a3a465a23be5840 Mon Sep 17 00:00:00 2001 From: murx- Date: Wed, 18 Mar 2020 10:38:35 +0100 Subject: Add symlink in Dockerfile to match Makefile --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 76634d2..d230fab 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,6 +37,8 @@ RUN git clone https://github.com/vanhauser-thc/AFLplusplus \ && make clean \ && cd .. +RUN mkdir -p /path/to/dyninst/ && ln -s /dyninst/build /path/to/dyninst/build-directory + RUN git clone https://github.com/vanhauser-thc/afl-dyninst \ && cd afl-dyninst \ && ln -s ../AFLplusplus afl \ -- cgit 1.4.1 From 4e2bd50ecbf6e2aed6caacf5f39bdf41f235b037 Mon Sep 17 00:00:00 2001 From: murx- Date: Wed, 18 Mar 2020 11:25:05 +0100 Subject: dyninst buildfile cannot be deleted in dockerfile --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d230fab..ad20dfa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -28,7 +28,6 @@ RUN git clone https://github.com/dyninst/dyninst \ && cmake .. \ && make \ && make install \ - && cd .. ; rm -rf build ; cd .. RUN git clone https://github.com/vanhauser-thc/AFLplusplus \ && cd AFLplusplus \ -- cgit 1.4.1 From c6f08c9842095301b330168cb8824d1e1d00fda5 Mon Sep 17 00:00:00 2001 From: murx- Date: Wed, 18 Mar 2020 13:43:14 +0100 Subject: Remove trailing backslash --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ad20dfa..b9b89d8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,7 +27,7 @@ RUN git clone https://github.com/dyninst/dyninst \ && cd dyninst && mkdir build && cd build \ && cmake .. \ && make \ - && make install \ + && make install RUN git clone https://github.com/vanhauser-thc/AFLplusplus \ && cd AFLplusplus \ -- cgit 1.4.1