theHarvester/Dockerfile
Matt 66e443376a
Update Dockerfile
Updated from pip to pip3 since using python3.6
2019-01-06 11:25:27 -05:00

8 lines
182 B
Docker

FROM python:3.6-alpine
RUN mkdir /app
RUN pip3 install requests beautifulsoup4 texttable plotly shodan
WORKDIR /app
COPY . /app
RUN chmod +x *.py
ENTRYPOINT ["/app/theHarvester.py"]