From 8e7c18d649f14de96ace96ad00471d321c7bc202 Mon Sep 17 00:00:00 2001 From: Philipp Date: Sun, 5 Jun 2022 23:35:14 +0200 Subject: [PATCH] Added basic Dockerfile --- Dockerfile | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..0a95aa9 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,23 @@ +FROM ubuntu:latest + +WORKDIR /root + +RUN apt update -y && apt-get upgrade -y +RUN apt-get install -y \ + git \ + wget \ + curl \ + nmap \ + ffuf \ + ldap-utils \ + snmp \ + iputils-ping && \ + nmap --script-updatedb + +RUN git clone https://github.com/21y4d/nmapAutomator.git && \ + ln -s /root/nmapAutomator/nmapAutomator.sh /usr/local/bin/ + +# Clean +RUN apt-get clean && rm -rf /var/lib/apt/lists/* + +ENTRYPOINT [ "/bin/bash", "/root/nmapAutomator/nmapAutomator.sh" ]