theHarvester/Dockerfile

8 lines
181 B
Text
Raw Normal View History

2019-01-05 10:58:01 +08:00
FROM python:3.6-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
2019-01-05 10:58:01 +08:00
ENTRYPOINT ["/app/theHarvester.py"]