Package version:

Interface ContainerAppsBuildConfiguration

Configuration of the build.

interface ContainerAppsBuildConfiguration {
    baseOs?: string;
    environmentVariables?: EnvironmentVariable[];
    platform?: string;
    platformVersion?: string;
    preBuildSteps?: PreBuildStep[];
}

Properties

baseOs?: string

Base OS used to build and run the app. NOTE: This property will not be serialized. It can only be populated by the server.

environmentVariables?: EnvironmentVariable[]

List of environment variables to be passed to the build, secrets should not be used in environment variable. NOTE: This property will not be serialized. It can only be populated by the server.

platform?: string

Platform to be used to build and run the app. NOTE: This property will not be serialized. It can only be populated by the server.

platformVersion?: string

Platform version to be used to build and run the app. NOTE: This property will not be serialized. It can only be populated by the server.

preBuildSteps?: PreBuildStep[]

List of steps to perform before the build. NOTE: This property will not be serialized. It can only be populated by the server.