mirror of
https://github.com/laramies/theHarvester.git
synced 2024-11-11 18:03:10 +08:00
8 lines
No EOL
220 B
Docker
8 lines
No EOL
220 B
Docker
FROM python:alpine3.11
|
|
RUN mkdir /app
|
|
WORKDIR /app
|
|
COPY . /app
|
|
RUN apk add --update build-base libffi-dev libxml2-dev libxslt-dev
|
|
RUN pip3 install -r requirements.txt
|
|
RUN chmod +x *.py
|
|
ENTRYPOINT ["/app/theHarvester.py"] |