-
Notifications
You must be signed in to change notification settings - Fork 381
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#619 ensure it is working with Docker
- Loading branch information
1 parent
97bef62
commit 91757ae
Showing
2 changed files
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
FROM python:3 | ||
FROM python:3.6 | ||
|
||
WORKDIR /worker | ||
COPY . Abuse_Finder | ||
RUN pip install --no-cache-dir -r Abuse_Finder/requirements.txt | ||
RUN pip3 install --no-cache-dir -r Abuse_Finder/requirements.txt | ||
ENTRYPOINT Abuse_Finder/abusefinder.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
cortexutils | ||
abuse_finder | ||
future |