Spaces:
Sleeping
Sleeping
Upload Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -18,4 +18,5 @@ COPY . /app
|
|
18 |
|
19 |
# Start Streamlit on the port Spaces provides, and bind to 0.0.0.0
|
20 |
# CMD ["bash", "-lc", "streamlit run /app/frontend.py --server.port $PORT --server.address 0.0.0.0"]
|
21 |
-
CMD ["sh", "-c", "streamlit run /app/frontend.py --server.port $PORT --server.address 0.0.0.0"]
|
|
|
|
18 |
|
19 |
# Start Streamlit on the port Spaces provides, and bind to 0.0.0.0
|
20 |
# CMD ["bash", "-lc", "streamlit run /app/frontend.py --server.port $PORT --server.address 0.0.0.0"]
|
21 |
+
# CMD ["sh", "-c", "streamlit run /app/frontend.py --server.port $PORT --server.address 0.0.0.0"]
|
22 |
+
CMD ["streamlit", "run", "/app/frontend.py", "--server.port", "8501", "--server.address", "0.0.0.0"]
|