Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -23,7 +23,7 @@ RUN pip install --no-cache-dir \
|
|
23 |
streamlit
|
24 |
|
25 |
# Expose Streamlit default port
|
26 |
-
EXPOSE
|
27 |
|
28 |
# Run the Streamlit app
|
29 |
-
CMD ["streamlit", "run", "app.py", "--server.port=
|
|
|
23 |
streamlit
|
24 |
|
25 |
# Expose Streamlit default port
|
26 |
+
EXPOSE 7860
|
27 |
|
28 |
# Run the Streamlit app
|
29 |
+
CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]
|