Files
theHarvester/Dockerfile
T

8 lines
180 B
Docker

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