mirror of
https://github.com/laramies/theHarvester.git
synced 2026-09-14 05:37:41 +02:00
10 lines
224 B
Docker
10 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"]
|