Skip to content

Instantly share code, notes, and snippets.

@grant
Last active June 8, 2020 23:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save grant/c4f79e62535779853aeb8a98a1fd4ba5 to your computer and use it in GitHub Desktop.
Save grant/c4f79e62535779853aeb8a98a1fd4ba5 to your computer and use it in GitHub Desktop.
Deploy a .NET container to Cloud Run
GCP_PROJECT=$(gcloud config list --format 'value(core.project)')
gcloud builds submit --tag gcr.io/$GCP_PROJECT/hellodotnet
gcloud run deploy hellodotnet \
--image gcr.io/$GCP_PROJECT/hellodotnet \
--platform managed \
--no-allow-unauthenticated
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment