about summary refs log tree commit diff
diff options
context:
space:
mode:
authorErik Tews <erik@datenzone.de>2021-11-28 21:59:01 +0100
committerErik Tews <erik@datenzone.de>2021-11-28 23:21:03 +0100
commit042da82f6cd9457fd2b5abc36cc36733eeacd526 (patch)
tree168d3094f101334869ad8f9512e88e2df3c4e943
parent773baf9391ff5f1793deb7968366819e7fa07adc (diff)
downloadafl++-042da82f6cd9457fd2b5abc36cc36733eeacd526.tar.gz
Include cmake and meson in the Dockerfile
The README contains an examples how afl can be used with cmake, but
cmake is not included in the Dockerfile. Thus, when running afl using
docker, one cannot invoke cmake from within the container.

This commit adds cmake and meson to the list of packages in the
Dockerfile that are installed when the docker image is generated.
-rw-r--r--Dockerfile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
index 18fb6367..a3c70746 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -16,6 +16,8 @@ env NO_ARCH_OPT 1
 RUN apt-get update && \
     apt-get -y install --no-install-suggests --no-install-recommends \
     automake \
+    cmake \
+    meson \
     ninja-build \
     bison flex \
     build-essential \