Build and deploy a sample FastAPI service to GCP Cloud Run
docker build -t cloudrun-fastapi-sample .
docker run -p 8000:8080 cloudrun-fastapi-sample
gcloud run deploy --image gcr.io/<YOUR PROJECT_NAME>/cloudrun-fastapi-sample
Build and deploy a sample FastAPI service to GCP Cloud Run
Dockerfile