Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -30,7 +30,7 @@ RUN chown -R user:user /app /tmp
|
|
| 30 |
USER user
|
| 31 |
|
| 32 |
# Expose the port Streamlit runs on
|
| 33 |
-
EXPOSE
|
| 34 |
|
| 35 |
# Command to run the Streamlit application
|
| 36 |
-
|
|
|
|
| 30 |
USER user
|
| 31 |
|
| 32 |
# Expose the port Streamlit runs on
|
| 33 |
+
EXPOSE 8501
|
| 34 |
|
| 35 |
# Command to run the Streamlit application
|
| 36 |
+
ENTRYPOINT ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]
|