theHarvester/Dockerfile

8 lines
185 B
Docker
Raw Normal View History

FROM python:3.6-alpine3.7
2018-11-23 05:20:06 +08:00
RUN mkdir /app
RUN pip3 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"]