mirror of
https://github.com/trustedsec/social-engineer-toolkit
synced 2024-11-22 12:33:06 +00:00
Initial commit of Dockerfile
This commit is contained in:
parent
5e057388e5
commit
2674ee840d
1 changed files with 21 additions and 0 deletions
21
Dockerfile
Normal file
21
Dockerfile
Normal 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
|
||||
|
||||
|
Loading…
Reference in a new issue