mirror of
https://github.com/laramies/theHarvester.git
synced 2026-09-09 19:27:42 +02:00
8 lines
181 B
Docker
8 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"]
|