Skip to content

Commit ef1e8a2

Browse files
committed
bake: missing attributes on group and target types
Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
1 parent 8e47567 commit ef1e8a2

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/types/buildx/bake.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,22 @@ export interface BakeDefinition {
2020
}
2121

2222
export interface Group {
23+
description?: string;
2324
targets: Array<string>;
2425
}
2526

2627
export interface Target {
28+
description?: string;
2729
args?: Record<string, string>;
2830
attest?: Array<string>;
2931
'cache-from'?: Array<string>;
3032
'cache-to'?: Array<string>;
33+
call: string;
3134
context: string;
3235
contexts?: Record<string, string>;
3336
dockerfile: string;
3437
'dockerfile-inline'?: string;
38+
entitlements?: Array<string>;
3539
labels?: Record<string, string>;
3640
'no-cache'?: boolean;
3741
'no-cache-filter'?: Array<string>;

0 commit comments

Comments
 (0)