/** * Docker build details containing tag and metadata */ export interface DockerBuildDetails { /** * URL to the build */ buildUrl?: string; /** * Path to the Docker image */ imagePath?: string; /** * Docker image labels */ labels?: { [key: string]: string; }; /** * Additional metadata for the build */ metadata?: { [key: string]: string; }; /** * Docker image tag */ tag?: string; }