mirror of
https://github.com/laramies/theHarvester.git
synced 2024-11-11 18:03:10 +08:00
500e8bbeb6
Signed-off-by: Jay Townsend <townsend891@hotmail.com>
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"]
|