Update Dockerfile
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
|
@@ -13,7 +13,7 @@ COPY src/ ./src/
|
|
| 13 |
|
| 14 |
RUN pip3 install -r requirements.txt
|
| 15 |
|
| 16 |
-
EXPOSE
|
| 17 |
-
HEALTHCHECK CMD curl --fail http://localhost:
|
| 18 |
|
| 19 |
-
ENTRYPOINT ["streamlit","run","src/streamlit_app.py","--server.port=
|
|
|
|
| 13 |
|
| 14 |
RUN pip3 install -r requirements.txt
|
| 15 |
|
| 16 |
+
EXPOSE 8501
|
| 17 |
+
HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health
|
| 18 |
|
| 19 |
+
ENTRYPOINT ["streamlit","run","src/streamlit_app.py","--server.port=8501","--server.address=0.0.0.0","--server.enableXsrfProtection=false","--server.enableCORS=false"]
|