github.com/GoogleContainerTools/skaffold/v2@v2.13.2/codelab/03_buildpacks-runimage-override/skaffold.yaml (about)

     1  apiVersion: skaffold/v2beta9
     2  kind: Config
     3  build:
     4    artifacts:
     5    - image: base
     6      context: base
     7    - image: app
     8      context: app
     9      buildpacks:
    10        runImage: base
    11        env:
    12        - GOPROXY={{.GOPROXY}}
    13      requires:
    14      - image: base