GCP:
- Go to GCP and create an account.
- Create a repo in registry.
- Get the repo tag
- Build docker
docker build -t earwise .
- Tag and deploy docker
docker tag earwise:latest us-east1-docker.pkg.dev/earwise-377812/earwise/earwise:latest
docker push us-east1-docker.pkg.dev/earwise-377812/earwise/earwise:latest
- Create the app
gcloud run deploy --image us-east1-docker.pkg.dev/earwise-377812/earwise/earwise:latest --cpu 4 --concurrency 2 --memory 16Gi --platform managed --min-instances 0 --max-instances 5 --timeout 5m --port 8005