mirror of
https://github.com/k4m4/kickthemout.git
synced 2025-02-16 23:54:01 +01:00
14 lines
316 B
Docker
14 lines
316 B
Docker
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
|
|
|
|
|