aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorKyle Ossinger <k0ss@users.noreply.github.com>2019-11-13 05:33:20 +0000
committerGitHub <noreply@github.com>2019-11-13 05:33:20 +0000
commit88384c89f356b555163167993da5a806c492d665 (patch)
treeace31ca79c08a9fc02bf4dbd4ff9df34d60a6f9c /Dockerfile
parent22cfd595efcf8d237beb1d7c707dda8d366b5bed (diff)
downloadAFLplusplus-88384c89f356b555163167993da5a806c492d665.tar.gz
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.
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile1
1 files changed, 1 insertions, 0 deletions
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