Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +7 -1
Dockerfile
CHANGED
|
@@ -17,5 +17,11 @@ EXPOSE 8501
|
|
| 17 |
|
| 18 |
HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health
|
| 19 |
|
| 20 |
-
ENTRYPOINT [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
|
|
|
|
| 17 |
|
| 18 |
HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health
|
| 19 |
|
| 20 |
+
ENTRYPOINT [
|
| 21 |
+
"streamlit", "run", "src/streamlit_app.py",
|
| 22 |
+
"--server.port=8501",
|
| 23 |
+
"--server.address=0.0.0.0",
|
| 24 |
+
"--server.enableXsrfProtection=false",
|
| 25 |
+
"--server.enableCORS=false"
|
| 26 |
+
]
|
| 27 |
|