about summary refs log tree commit diff
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2020-03-18 14:52:55 +0100
committervan Hauser <vh@thc.org>2020-03-18 14:52:55 +0100
commit6447fc17e5257af2771799f352c824b5eed6fcc6 (patch)
tree8605b178923259cdf4bcc993292cb7d48fbdc465
parenta6c6145672b108e147b93d8ff8c591bb48ccc766 (diff)
downloadafl-dyninst-6447fc17e5257af2771799f352c824b5eed6fcc6.tar.gz
keep docker image as small as possible
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index b9b89d8..c73a24f 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -33,7 +33,6 @@ RUN git clone https://github.com/vanhauser-thc/AFLplusplus \
         && cd AFLplusplus \
         && make source-only \
         && make install \
-        && make clean \
         && cd ..
 
 RUN mkdir -p /path/to/dyninst/ && ln -s /dyninst/build /path/to/dyninst/build-directory
@@ -43,9 +42,10 @@ RUN git clone https://github.com/vanhauser-thc/afl-dyninst \
         && ln -s ../AFLplusplus afl \
         && make \
         && make install \
-        && make clean \
         && cd .. \
         && echo "/usr/local/lib" > /etc/ld.so.conf.d/dyninst.conf && ldconfig \
         && echo "export DYNINSTAPI_RT_LIB=/usr/local/lib/libdyninstAPI_RT.so" >> .bashrc
 
+RUN rm -rf afl-dyninst AFLplusplus dyninst
+
 ENV DYNINSTAPI_RT_LIB /usr/local/lib/libdyninstAPI_RT.so