Spaces:
Sleeping
Sleeping
Upload Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -17,4 +17,5 @@ COPY . /app
|
|
17 |
# Spaces will inject $PORT at runtime.
|
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"]
|
|
|
|
17 |
# Spaces will inject $PORT at runtime.
|
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"]
|