Interface CacheFrom

CacheFrom may be used to specify build stages to use for the Docker build cache. The final image is always implicitly included.

interface CacheFrom {
    stages?: string[];
}

Properties

Properties

stages?: string[]

An optional list of build stages to use for caching. Each build stage in this list will be built explicitly and pushed to the target repository. A given stage's image will be tagged as "[stage-name]".

Generated using TypeDoc