mirror of
https://github.com/laramies/theHarvester.git
synced 2025-02-25 06:53:05 +08:00
9 lines
224 B
Docker
9 lines
224 B
Docker
FROM kalilinux/kali-linux-docker
|
|
RUN mkdir /app
|
|
WORKDIR /app
|
|
COPY . /app
|
|
RUN apt-get -qq update
|
|
RUN apt-get install -yqq python3-pip
|
|
RUN pip3 install -r requirements.txt
|
|
RUN chmod +x *.py
|
|
ENTRYPOINT ["/app/theHarvester.py"]
|