github.com/buildpacks/pack@v0.33.3-0.20240516162812-884dd1837311/acceptance/testdata/pack_fixtures/inspect_image_local_output.json (about) 1 { 2 "image_name": "{{.image_name}}", 3 "remote_info": null, 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 }, 11 "run_images": [ 12 { 13 "name": "{{.run_image_local_mirror}}", 14 "user_configured": true 15 }, 16 { 17 "name": "pack-test/run" 18 }, 19 { 20 "name": "{{.run_image_mirror}}" 21 } 22 ], 23 "buildpacks": [ 24 { 25 "id": "simple/layers", 26 "version": "simple-layers-version" 27 } 28 ], 29 "extensions": null, 30 "processes": [ 31 { 32 "type": "web", 33 "shell": "bash", 34 "command": "{{ ( StringsEscapeBackslash .web_command ) }}", 35 "default": true, 36 "args": [ 37 "8080" 38 ], 39 "working-dir": "{{ ( StringsEscapeBackslash .image_workdir ) }}" 40 }, 41 { 42 "type": "hello", 43 "shell": "", 44 "command": "{{.hello_command}}", 45 "default": false, 46 "args": [ 47 {{ ( StringsJoin (StringsDoubleQuote .hello_args) "," ) }} 48 ], 49 "working-dir": "{{ ( StringsEscapeBackslash .image_workdir ) }}" 50 } 51 ] 52 } 53 }