From a0260a774935b39b5c0487167d5c3b0ff64fab1b Mon Sep 17 00:00:00 2001 From: Mario Date: Sat, 16 Jul 2022 00:07:18 +0000 Subject: [PATCH] Add files via upload --- Dockerfile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..0f64134 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +FROM ubuntu:focal + +RUN apt update -y ; apt upgrade -y ; apt install python3 -y ; apt install python3-pip -y ; apt install git -y ; apt install nmap -y ; apt autoremove -y + +RUN git clone https://github.com/k4m4/kickthemout.git + +WORKDIR /kickthemout + +RUN pip3 install -r requirements.txt + +CMD python3 kickthemout.py + +