mirror of
https://github.com/laramies/theHarvester.git
synced 2025-02-24 06:22:57 +08:00
8 lines
No EOL
163 B
Docker
8 lines
No EOL
163 B
Docker
FROM python:2-alpine
|
|
RUN mkdir /app
|
|
RUN pip install requests
|
|
WORKDIR /app
|
|
COPY . /app
|
|
RUN chmod +x *.py
|
|
ENTRYPOINT ["/app/theHarvester.py"]
|
|
CMD ["--help"] |