Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -19,5 +19,5 @@ WORKDIR $HOME/app
|
|
| 19 |
|
| 20 |
COPY --chown=user . $HOME/app
|
| 21 |
|
| 22 |
-
# Define the command to run the Streamlit app on port "
|
| 23 |
-
CMD ["streamlit", "run", "app.py", "--server.port=
|
|
|
|
| 19 |
|
| 20 |
COPY --chown=user . $HOME/app
|
| 21 |
|
| 22 |
+
# Define the command to run the Streamlit app on port "7860" and make it accessible externally
|
| 23 |
+
CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0", "--server.enableXsrfProtection=false"]
|