social-engineer-toolkit/Dockerfile
Avneet Singh 403d0a99e6
Update Dockerfile
- Use apt-get instead of apt, and install all packages at once
- Do a shallow clone. Saves bandwidth and time.
2021-11-25 00:43:22 +05:30

24 lines
545 B
Docker

FROM ubuntu:latest
# Update sources and install git
RUN apt-get update -y && apt-get install -y git python3-pip
#Git configuration
RUN git config --global user.name "YOUR NAME HERE" \
&& git config --global user.email "YOUR EMAIL HERE"
# Clone SETOOLKIT
RUN git clone --depth=1 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" ]