Skip to content
This repository has been archived by the owner on Aug 10, 2023. It is now read-only.

Commit

Permalink
fixed syntax for gcloud builds cmd. (#1208)
Browse files Browse the repository at this point in the history
Fixed syntax of gcloud cmd to build container.
was:
gcloud build submit --tag gcr.io/[YOUR_PROJECT_ID]/cra-cloud-run
changed to:
gcloud builds submit --tag gcr.io/[YOUR_PROJECT_ID]/cra-cloud-run

As reported by gcloud:
ERROR: (gcloud) Invalid choice: 'build'.
Maybe you meant:
  gcloud builds submit
  • Loading branch information
chrishampart authored Apr 2, 2020
1 parent 3eccab7 commit af9c62b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tutorials/deploy-react-nginx-cloud-run/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ Run the following command to submit all of the code and have your container buil
`[YOUR_PROJECT_ID]` with your
[project ID](https://cloud.google.com/resource-manager/docs/creating-managing-projects#identifying_projects).

gcloud build submit --tag gcr.io/[YOUR_PROJECT_ID]/cra-cloud-run
gcloud builds submit --tag gcr.io/[YOUR_PROJECT_ID]/cra-cloud-run
After a couple of minutes, a new image will be in the container registry in your Google Cloud project. To see it, go to the
[**Container Registry > Images**](http://console.cloud.google.com/gcr/images) page in the Cloud Console.
Expand Down

0 comments on commit af9c62b

Please sign in to comment.