DockerBuildResponse

data class DockerBuildResponse(val context: String? = null, val dockerSpecificationType: String, val dockerfile: String, val platform: DockerImagePlatformResponse? = null)

Class to represent configuration settings for Docker Build

Constructors

Link copied to clipboard
constructor(context: String? = null, dockerSpecificationType: String, dockerfile: String, platform: DockerImagePlatformResponse? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val context: String? = null

Path to a snapshot of the Docker Context. This property is only valid if Dockerfile is specified. The path is relative to the asset path which must contain a single Blob URI value.

Link copied to clipboard

Required Docker command line instructions to assemble an image.

Link copied to clipboard

Enum to determine docker specification type. Must be either Build or Image. Expected value is 'Build'.

Link copied to clipboard

The platform information of the docker image.