From 88384c89f356b555163167993da5a806c492d665 Mon Sep 17 00:00:00 2001 From: Kyle Ossinger Date: Wed, 13 Nov 2019 05:33:20 +0000 Subject: Added workdir Last addition I swear. Now you can just run, for example: `docker run --rm -v $PWD:/work -it aflplusplus:latest ./build_script_in_working_dir.sh'. Had forgotten this but figured this would make things easier for folks. --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index eac468c8..1947f211 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,3 +29,4 @@ ARG LLVM_CONFIG=llvm-config-9 COPY . /app RUN cd /app && make clean && make distrib && \ make install && cd .. && rm -rf /app +WORKDIR /work -- cgit 1.4.1