From 2674ee840df2f96b58cf17ec91b005f9c2e97b1b Mon Sep 17 00:00:00 2001 From: Reagan Kirby Date: Fri, 19 Feb 2021 04:58:15 -0600 Subject: [PATCH] Initial commit of Dockerfile --- Dockerfile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 000000000..ed9a56e23 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,21 @@ +FROM python:3.8-slim + +# Update sources +RUN apt update -y + +# Install git +RUN apt install -y git + +# Clone SETOOLKIT +RUN git clone https://github.com/trustedsec/social-engineer-toolkit.git + +# Change Working Directory +WORKDIR social-engineer-toolkit + +# Install requirements +RUN pip3 install -r requirements.txt + +# Install SETOOLKIT +RUN python setup.py + + \ No newline at end of file