Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- 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
|
|
|
|
|
|
| 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 |
+
|