Merge pull request #7 from yogisec/patch-1

dockerfile
master
vestjoe 2018-09-24 11:21:56 -05:00 committed by GitHub
commit 8f8abdb6e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 18 additions and 0 deletions

18
dockerfile Normal file
View File

@ -0,0 +1,18 @@
#build it:
#docker build -t domainhunter:1.0 .
#run it:
#docker run -it domainhunter:1.0 [args]
FROM ubuntu:16.04
RUN apt-get update \
&& apt-get install python3-pip -y\
&& apt-get install tesseract-ocr -y\
&& apt-get install python3-pil -y
ADD domainhunter.py /
ADD requirements.txt /
RUN pip3 install -r requirements.txt
ENTRYPOINT [ "python3", "./domainhunter.py" ]