mirror of
https://github.com/sherlock-project/sherlock
synced 2024-11-15 08:47:08 +00:00
6 lines
No EOL
183 B
Docker
6 lines
No EOL
183 B
Docker
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"] |