theHarvester/Dockerfile
2019-01-04 21:58:01 -05:00

7 lines
181 B
Docker

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