github.com/buildpacks/pack@v0.33.3-0.20240516162812-884dd1837311/acceptance/testdata/pack_fixtures/inspect_image_local_output.yaml (about)

     1  ---
     2  image_name: "{{.image_name}}"
     3  remote_info:
     4  local_info:
     5    stack: pack.test.stack
     6    rebasable: {{.rebasable}}
     7    base_image:
     8      top_layer: "{{.base_image_top_layer}}"
     9      reference: "{{.base_image_id}}"
    10    run_images:
    11      - name: "{{.run_image_local_mirror}}"
    12        user_configured: true
    13      - name: pack-test/run
    14      - name: "{{.run_image_mirror}}"
    15    buildpacks:
    16      - id: simple/layers
    17        version: simple-layers-version
    18    extensions: []
    19    processes:
    20      - type: web
    21        shell: bash
    22        command: "{{ ( StringsEscapeBackslash .web_command ) }}"
    23        default: true
    24        args:
    25          - '8080'
    26        working-dir: "{{ ( StringsEscapeBackslash .image_workdir ) }}"
    27      - type: hello
    28        shell: ''
    29        command: "{{.hello_command}}"
    30        default: false
    31        args: [ {{ ( StringsJoin (StringsDoubleQuote .hello_args) ",") }} ]
    32        working-dir: "{{ ( StringsEscapeBackslash .image_workdir ) }}"