Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -27,7 +27,7 @@ COPY . /app
|
|
27 |
WORKDIR /app
|
28 |
|
29 |
# Expose the Streamlit port
|
30 |
-
EXPOSE
|
31 |
|
32 |
# Run the Streamlit application
|
33 |
-
CMD ["streamlit", "run", "app.py", "--server.port=
|
|
|
27 |
WORKDIR /app
|
28 |
|
29 |
# Expose the Streamlit port
|
30 |
+
EXPOSE 8080
|
31 |
|
32 |
# Run the Streamlit application
|
33 |
+
CMD ["streamlit", "run", "app.py", "--server.port=8080", "--server.address=0.0.0.0"]
|