Adding docker support

This commit is contained in:
Chris Blumentritt
2018-12-31 14:53:27 -06:00
parent 448f072e36
commit b96da0b547
3 changed files with 27 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
FROM python:3.7-alpine
RUN /sbin/apk add tor
COPY . /opt/sherlock/
RUN /usr/local/bin/pip install -r /opt/sherlock/requirements.txt
ENTRYPOINT ["python", "/opt/sherlock/sherlock.py"]