{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ImageConfig", "title": "ImageConfig", "type": "object", "properties": { "EntryPoint": { "allOf": [ { "$ref": "#/components/schemas/StringList" }, { "description": "Specifies the entry point to their application, which is typically the location of the runtime executable." } ] }, "Command": { "allOf": [ { "$ref": "#/components/schemas/StringList" }, { "description": "Specifies parameters that you want to pass in with ENTRYPOINT." } ] }, "WorkingDirectory": { "allOf": [ { "$ref": "#/components/schemas/WorkingDirectory" }, { "description": "Specifies the working directory." } ] } }, "description": "Configuration values that override the container image Dockerfile settings. For more information, see Container image settings." }