File size: 258 Bytes
fa2de66
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
#!/bin/sh
set -e
if [ ! -d "/app/RFPmaster" ]; then
    git clone https://$GITHUB_TOKEN@github.com/chourmovs/RFPmaster.git
fi
cd RFPmaster
pip install --no-cache-dir -r requirements.txt fastapi uvicorn
exec uvicorn rfp_api_app:app --host 0.0.0.0 --port 7860