mirror of
https://github.com/laramies/theHarvester.git
synced 2024-11-13 19:16:18 +08:00
7 lines
156 B
Docker
7 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"]
|