mirror of
https://github.com/laramies/theHarvester.git
synced 2026-09-18 15:48:44 +02:00
7 lines
140 B
Docker
7 lines
140 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"] |