mirror of
https://github.com/laramies/theHarvester.git
synced 2024-11-11 09:41:06 +08:00
8 lines
188 B
Docker
8 lines
188 B
Docker
FROM kalilinux/kali-linux-docker
|
|
RUN mkdir /app
|
|
WORKDIR /app
|
|
COPY . /app
|
|
RUN apt-get -qq update
|
|
RUN apt-get install -yqq theharvester
|
|
RUN chmod +x *.py
|
|
ENTRYPOINT ["/app/theHarvester.py"]
|