theHarvester/Dockerfile

8 lines
180 B
Text
Raw Normal View History

FROM python:2-alpine
2018-11-23 05:20:06 +08:00
RUN mkdir /app
2019-01-05 00:34:54 +08:00
RUN pip install requests beautifulsoup4 texttable plotly shodan
WORKDIR /app
COPY . /app
RUN chmod +x *.py
ENTRYPOINT ["/app/theHarvester.py"]