diff options
author | van Hauser <vh@thc.org> | 2020-05-28 14:34:50 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-05-28 14:34:50 +0200 |
commit | b87d97aa2b664f1a5ea90612ba7543b38bc6d24f (patch) | |
tree | f50dfcc0924d03ee098ffb391fa8348e366de47b /README.md | |
parent | 8a2656681f27bd5356368736d5b0d836391ce2aa (diff) | |
download | afl++-b87d97aa2b664f1a5ea90612ba7543b38bc6d24f.tar.gz |
make dockerfile better
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/README.md b/README.md index 1c730ec1..a906a2c0 100644 --- a/README.md +++ b/README.md @@ -133,7 +133,15 @@ For everyone who wants to contribute (and send pull requests) please read ## Building and installing afl++ -afl++ has many build options. +An easy way to install afl++ with everything compiled is available via docker: +```shell +docker pull aflplusplus/aflplusplus +docker run -ti -v /location/of/your/target:/src aflplusplus/aflplusplus +``` +This container is automatically generated when a push to master happens. +You will find your target source code in /src in the container. + +If you want to build afl++ yourself you have many options. The easiest is to build and install everything: ```shell |