Update Dockerfile
Browse files- Dockerfile +5 -1
Dockerfile
CHANGED
|
@@ -19,4 +19,8 @@ EXPOSE 8501
|
|
| 19 |
|
| 20 |
HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health
|
| 21 |
|
| 22 |
-
ENTRYPOINT ["streamlit", "run", "app.py",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
|
| 20 |
HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health
|
| 21 |
|
| 22 |
+
ENTRYPOINT ["streamlit", "run", "app.py", \
|
| 23 |
+
"--server.port=8501", \
|
| 24 |
+
"--server.address=0.0.0.0", \
|
| 25 |
+
"--server.enableXsrfProtection=false", \
|
| 26 |
+
"--server.enableCORS=false"]
|