Spaces:
Sleeping
Sleeping
File size: 286 Bytes
e258771 5c73d5c 59ec3f3 e258771 59ec3f3 e258771 |
1 2 3 4 5 6 7 8 9 |
#!/bin/bash
python -m uvicorn "main:app" "--host" "0.0.0.0" "--port" "8080" &
#active wait- container won't quit
while ! timeout 1 bash -c "echo > /dev/tcp/localhost/8080"; do sleep 5; done
export be_url=`awk 'END{print "http://"$1":8080"}' /etc/hosts`
python -m streamlit run app.py
|