mirror of
https://github.com/trustedsec/social-engineer-toolkit
synced 2025-02-16 13:28:36 +00:00
Merge pull request #853 from fibonascii/feature/dockerfile
Feature/dockerfile
This commit is contained in:
commit
307686078a
1 changed files with 24 additions and 0 deletions
24
Dockerfile
Normal file
24
Dockerfile
Normal file
|
@ -0,0 +1,24 @@
|
|||
FROM ubuntu:latest
|
||||
|
||||
# Update sources and install git
|
||||
RUN apt update -y && apt install git -y && apt install python3-pip -y
|
||||
|
||||
#Git configuration
|
||||
RUN git config --global user.name "YOUR NAME HERE" \
|
||||
&& git config --global user.email "YOUR EMAIL HERE"
|
||||
|
||||
# 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 python3 setup.py
|
||||
|
||||
ENTRYPOINT [ "./setoolkit" ]
|
||||
|
||||
|
Loading…
Add table
Reference in a new issue