diff options
author | Kyle Ossinger <k0ss@users.noreply.github.com> | 2019-11-13 05:33:20 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-13 05:33:20 +0000 |
commit | 88384c89f356b555163167993da5a806c492d665 (patch) | |
tree | ace31ca79c08a9fc02bf4dbd4ff9df34d60a6f9c | |
parent | 22cfd595efcf8d237beb1d7c707dda8d366b5bed (diff) | |
download | afl++-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.
-rw-r--r-- | Dockerfile | 1 |
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 |