Package version:

Properties that describe a base image dependency.

interface BaseImageDependency {
    digest?: string;
    registry?: string;
    repository?: string;
    tag?: string;
    type?: string;
}

Properties

digest?: string

The sha256-based digest of the image manifest.

registry?: string

The registry login server.

repository?: string

The repository name.

tag?: string

The tag name.

type?: string

The type of the base image dependency.