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

     1  {
     2    "image_name": "{{.image_name}}",
     3    "local_info": null,
     4    "remote_info": {
     5      "stack": "pack.test.stack",
     6      "rebasable": {{.rebasable}},
     7      "base_image": {
     8        "top_layer": "{{.base_image_top_layer}}",
     9        "reference": "{{.base_image_ref}}"
    10      },
    11      "run_images": [
    12        {
    13          "name": "pack-test/run"
    14        },
    15        {
    16          "name": "{{.run_image_mirror}}"
    17        }
    18      ],
    19      "buildpacks": [
    20        {
    21          "id": "simple/layers",
    22          "version": "simple-layers-version"
    23        }
    24      ],
    25      "extensions": null,
    26      "processes": [
    27        {
    28          "type": "web",
    29          "shell": "bash",
    30          "command": "{{( StringsEscapeBackslash .web_command )}}",
    31          "default": true,
    32          "args": [
    33            "8080"
    34          ],
    35          "working-dir": "{{ ( StringsEscapeBackslash .image_workdir ) }}"
    36        },
    37        {
    38          "type": "hello",
    39          "shell": "",
    40          "command": "{{.hello_command}}",
    41          "default": false,
    42          "args": [
    43            {{ ( StringsJoin (StringsDoubleQuote .hello_args) "," ) }}
    44          ],
    45          "working-dir": "{{ ( StringsEscapeBackslash .image_workdir ) }}"
    46        }
    47      ]
    48    }
    49  }