FunctionImageConfig

data class FunctionImageConfig(val command: List<String>? = null, val entryPoint: List<String>? = null, val workingDirectory: String? = null)

Configuration values that override the container image Dockerfile settings. For more information, see Container image settings.

Constructors

Link copied to clipboard
constructor(command: List<String>? = null, entryPoint: List<String>? = null, workingDirectory: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val command: List<String>? = null

Specifies parameters that you want to pass in with ENTRYPOINT. You can specify a maximum of 1,500 parameters in the list.

Link copied to clipboard
val entryPoint: List<String>? = null

Specifies the entry point to their application, which is typically the location of the runtime executable. You can specify a maximum of 1,500 string entries in the list.

Link copied to clipboard

Specifies the working directory. The length of the directory string cannot exceed 1,000 characters.