Vela commited on
Commit
ed7e26f
·
1 Parent(s): f1cd084

Dockerfile working fine now both bd and fd

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -20,4 +20,4 @@ ENV PYTHONPATH="/app/src"
20
 
21
  # Start FastAPI & Streamlit together using tmux
22
 
23
- CMD ["sh", "-c", "uvicorn src.backend.main:app --host 0.0.0.0 --port 8000 & sleep 5 && streamlit run src/frontend/home.py --server.port 7860 --server.address 0.0.0.0"]
 
20
 
21
  # Start FastAPI & Streamlit together using tmux
22
 
23
+ CMD ["sh", "-c", "fastapi dev src/backend/main.py --host 0.0.0.0 --port 8000 & sleep 5 && streamlit run src/frontend/home.py --server.port 7860 --server.address 0.0.0.0"]