-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from fixdocker/master
Fix Dockerfile
- Loading branch information
Showing
1 changed file
with
2 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,4 +1,4 @@ | ||
FROM ubuntu:latest | ||
FROM ubuntu:18.04 | ||
MAINTAINER Rick Torzynski "[email protected]" | ||
RUN apt-get update -y | ||
RUN apt-get install -y python-pip python-dev build-essential | ||
|
@@ -11,4 +11,4 @@ RUN pip install pytesseract | |
RUN pip install opencv-contrib-python | ||
RUN pip install -r requirements.txt | ||
ENTRYPOINT ["python"] | ||
CMD ["app.py"] | ||
CMD ["app.py"] |