mirror of
https://github.com/laramies/theHarvester.git
synced 2024-11-10 17:13:07 +08:00
cae56fbfd7
Updated Alpine version.
7 lines
185 B
Docker
7 lines
185 B
Docker
FROM python:3.6-alpine3.7
|
|
RUN mkdir /app
|
|
RUN pip3 install requests beautifulsoup4 texttable plotly shodan
|
|
WORKDIR /app
|
|
COPY . /app
|
|
RUN chmod +x *.py
|
|
ENTRYPOINT ["/app/theHarvester.py"]
|