mirror of
https://github.com/laramies/theHarvester.git
synced 2025-02-23 14:02:58 +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"]
|