theHarvester/Dockerfile
L1ghtn1ng b54790e4b1 Revert "Update ci and dockerfile"
This reverts commit 910ad7bf
2019-10-12 23:46:18 +01:00

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"]