ZEROTSUDIOS commited on
Commit
a36c8fd
·
verified ·
1 Parent(s): 8ddd149

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -20,4 +20,5 @@ RUN pip install -r requirements.txt
20
  RUN python -c "import nltk; nltk.download('punkt'); nltk.download('stopwords'); nltk.download('wordnet')"
21
 
22
  # Start app using gunicorn
23
- CMD [\"gunicorn\", \"-w\", \"4\", \"-b\", \"0.0.0.0:7860\", \"app:app\"]
 
 
20
  RUN python -c "import nltk; nltk.download('punkt'); nltk.download('stopwords'); nltk.download('wordnet')"
21
 
22
  # Start app using gunicorn
23
+ CMD gunicorn -w 4 -b 0.0.0.0:7860 app:app
24
+