Docker Build Step Args
data class DockerBuildStepArgs(val arguments: Output<List<ArgumentArgs>>? = null, val contextAccessToken: Output<String>? = null, val contextPath: Output<String>? = null, val dockerFilePath: Output<String>, val imageNames: Output<List<String>>? = null, val isPushEnabled: Output<Boolean>? = null, val noCache: Output<Boolean>? = null, val target: Output<String>? = null, val type: Output<String>) : ConvertibleToJava<DockerBuildStepArgs>
The Docker build step.
Constructors
Link copied to clipboard
constructor(arguments: Output<List<ArgumentArgs>>? = null, contextAccessToken: Output<String>? = null, contextPath: Output<String>? = null, dockerFilePath: Output<String>, imageNames: Output<List<String>>? = null, isPushEnabled: Output<Boolean>? = null, noCache: Output<Boolean>? = null, target: Output<String>? = null, type: Output<String>)
Properties
Link copied to clipboard
The collection of override arguments to be used when executing this build step.
Link copied to clipboard
The token (git PAT or SAS token of storage account blob) associated with the context for a step.
Link copied to clipboard
The URL(absolute or relative) of the source context for the task step.
Link copied to clipboard
The Docker file path relative to the source context.
Link copied to clipboard
The fully qualified image names including the repository and tag.
Link copied to clipboard
The value of this property indicates whether the image built should be pushed to the registry or not.