mirror of
https://github.com/laramies/theHarvester.git
synced 2026-09-17 23:27:46 +02:00
8 lines
156 B
Docker
8 lines
156 B
Docker
FROM python:2-alpine
|
|
RUN mkdir /app
|
|
RUN pip install requests beautifulsoup4
|
|
WORKDIR /app
|
|
COPY . /app
|
|
RUN chmod +x *.py
|
|
ENTRYPOINT ["/app/theHarvester.py"]
|