BuildContextArgs

data class BuildContextArgs(val contextUri: Output<String>, val dockerfilePath: Output<String>? = null) : ConvertibleToJava<BuildContextArgs>

Configuration settings for Docker build context

Constructors

Link copied to clipboard
constructor(contextUri: Output<String>, dockerfilePath: Output<String>? = null)

Properties

Link copied to clipboard
val contextUri: Output<String>

Required URI of the Docker build context used to build the image. Supports blob URIs on environment creation and may return blob or Git URIs.

Link copied to clipboard
val dockerfilePath: Output<String>? = null

Path to the Dockerfile in the build context.

Functions

Link copied to clipboard
open override fun toJava(): BuildContextArgs