Create and enable venv. You need to have Python 3.11 installed on your system.
python3 -m venv venv
source venv/bin/activate
Install pip packages
pip install -r requirements.txt
docker build -t fastapi-tutorial .
docker run -d --name fastapi-tutorial -p 80:80 fastapi-tutorial