Initial commit of Dockerfile

This commit is contained in:
Reagan Kirby 2021-02-19 04:58:15 -06:00
parent 5e057388e5
commit 2674ee840d

21
Dockerfile Normal file
View file

@ -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