Merge pull request #672 from rhomson2/master

add WORKDIR in Dockerfile. Remove Image in compose
This commit is contained in:
Siddharth Dushantha 2020-07-22 12:54:09 +02:00 committed by GitHub
commit db52caea79
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 1 deletions

View file

@ -23,5 +23,6 @@ COPY . /opt/sherlock/
RUN pip3 install -r requirements.txt -f /wheels \
&& rm -rf /wheels \
&& rm -rf /root/.cache/pip/*
WORKDIR /opt/sherlock/sherlock
ENTRYPOINT ["python", "sherlock.py"]

View file

@ -3,6 +3,5 @@ version: '2'
services:
sherlock:
build: .
image: theyahya/sherlock
volumes:
- "./results:/opt/sherlock/results"