github.com/GoogleContainerTools/skaffold/v2@v2.13.2/docs-v2/content/en/samples/deployers/cloud-run/local-build-image.yaml (about) 1 apiVersion: skaffold/v4beta6 2 kind: Config 3 4 build: 5 local: 6 push: true # <- We need to push the images so Cloud Run can deploy them 7 8 platforms: ["linux/amd64"] # <- Specific platform supported by Cloud Run 9 10 artifacts: 11 - image: my-img # <- Should match the image name in the Cloud Run service.yaml 12 docker: 13 dockerfile: ./Dockerfile 14 15 manifests: 16 rawYaml: 17 - resources/service.yaml 18 19 deploy: 20 cloudrun: 21 projectid: YOUR-GCP-PROJECT 22 region: GCP-REGION