Skip to content

Commit

Permalink
Merge pull request #504 from crazy-max/bake-missing-attrs
Browse files Browse the repository at this point in the history
bake: missing attributes on group and target types
  • Loading branch information
crazy-max authored Nov 26, 2024
2 parents dcacfbd + ade18ca commit 5cd4716
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/types/buildx/bake.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,22 @@ export interface BakeDefinition {
}

export interface Group {
description?: string;
targets: Array<string>;
}

export interface Target {
description?: string;
args?: Record<string, string>;
attest?: Array<string>;
'cache-from'?: Array<string>;
'cache-to'?: Array<string>;
call?: string;
context: string;
contexts?: Record<string, string>;
dockerfile: string;
'dockerfile-inline'?: string;
entitlements?: Array<string>;
labels?: Record<string, string>;
'no-cache'?: boolean;
'no-cache-filter'?: Array<string>;
Expand Down

0 comments on commit 5cd4716

Please sign in to comment.