File size: 236 Bytes
de2c597
fe1089d
de2c597
 
 
 
 
fe1089d
1
2
3
4
5
6
7
8
9
#!/bin/bash
# entrypoint script for the docker container to run at start

# installing all the dependencies
pip install --no-cache-dir --upgrade -r requirements.txt

# running the fastapi app
uvicorn main:app --host 0.0.0.0 --port 8080