From ca9f3ec25ed463141b9a5f08811ff0e59ee3b962 Mon Sep 17 00:00:00 2001 From: LucianoFromTrelew Date: Fri, 12 Oct 2018 14:17:40 -0300 Subject: [PATCH] Add nmap and iptables to Dockerfile --- Dockerfile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2d5d9c4..0df74ad 100644 --- a/Dockerfile +++ b/Dockerfile @@ -58,8 +58,12 @@ RUN chmod +x /entrypoint.sh # Emane dependencies RUN apt-get update -qq && apt-get --no-install-recommends -y install gcc g++ autoconf automake libtool libxml2-dev libprotobuf-dev \ python-protobuf libpcap-dev libpcre3-dev uuid-dev debhelper pkg-config build-essential \ -python-setuptools protobuf-compiler git dh-python python-lxml && \ -rm -rf /var/lib/apt/* +python-setuptools protobuf-compiler git dh-python python-lxml + +# Add nmap and iptables for ARyS +RUN apt-get update -qq && \ + apt-get --no-install-recommends -y install nmap iptables && \ + rm -rf /var/lib/apt/* # Need a patch to get EMANE to compile with GCC >7 ADD patches/gccfix.diff /root/