Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +4 -2
Dockerfile
CHANGED
|
@@ -20,7 +20,9 @@ RUN python -m nltk.downloader wordnet stopwords
|
|
| 20 |
|
| 21 |
|
| 22 |
# 7. Expose Streamlit Port
|
| 23 |
-
EXPOSE
|
|
|
|
|
|
|
| 24 |
|
| 25 |
# 8. Run the Streamlit App
|
| 26 |
-
|
|
|
|
| 20 |
|
| 21 |
|
| 22 |
# 7. Expose Streamlit Port
|
| 23 |
+
EXPOSE 8501
|
| 24 |
+
HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health
|
| 25 |
+
|
| 26 |
|
| 27 |
# 8. Run the Streamlit App
|
| 28 |
+
ENTRYPOINT ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]
|