interface BuildOptions {
    args?: {
        [k: string]: string;
    };
    cacheFrom?: string | string[];
    target?: string;
    [k: string]: unknown;
}

Indexable

[k: string]: unknown

Properties

args?: {
    [k: string]: string;
}

Build arguments.

Type declaration

  • [k: string]: string
cacheFrom?: string | string[]

The image to consider as a cache. Use an array to specify multiple images.

target?: string

Target stage in a multi-stage build.