Skip to content

Commit

Permalink
bake: missing attributes on group and target types
Browse files Browse the repository at this point in the history
Signed-off-by: CrazyMax <[email protected]>
  • Loading branch information
crazy-max committed Nov 26, 2024
1 parent 8e47567 commit ade18ca
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 ade18ca

Please sign in to comment.