Ludvig
commited on
Commit
·
b995dc9
1
Parent(s):
23d612c
add server address
Browse files- Dockerfile +1 -2
Dockerfile
CHANGED
|
@@ -21,7 +21,6 @@ RUN python -c "import streamlit; print('streamlit: ', streamlit.__version__)"
|
|
| 21 |
COPY . .
|
| 22 |
|
| 23 |
# The code to run when container is started:
|
| 24 |
-
# server.address 0.0.0.0 ?
|
| 25 |
|
| 26 |
-
ENTRYPOINT ["conda", "run", "--no-capture-output", "-n", "plt_env", "streamlit", "run", "app.py", "--server.port", "7860"]
|
| 27 |
|
|
|
|
| 21 |
COPY . .
|
| 22 |
|
| 23 |
# The code to run when container is started:
|
|
|
|
| 24 |
|
| 25 |
+
ENTRYPOINT ["conda", "run", "--no-capture-output", "-n", "plt_env", "streamlit", "run", "app.py", "--server.port", "7860", "--server.address", "0.0.0.0"]
|
| 26 |
|