Update Dockerfile
Browse files- Dockerfile +5 -2
Dockerfile
CHANGED
|
@@ -28,5 +28,8 @@ RUN playwright install --with-deps chromium
|
|
| 28 |
|
| 29 |
COPY . .
|
| 30 |
|
| 31 |
-
|
| 32 |
-
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
|
| 29 |
COPY . .
|
| 30 |
|
| 31 |
+
EXPOSE 8501
|
| 32 |
+
|
| 33 |
+
HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health
|
| 34 |
+
|
| 35 |
+
ENTRYPOINT ["streamlit", "run", "src/streamlit_app.py", "--server.port=8501", "--server.address=0.0.0.0"]
|