From ade18ca4a9e63914837d094d4a2b3eb4fc9f2928 Mon Sep 17 00:00:00 2001 From: CrazyMax <1951866+crazy-max@users.noreply.github.com> Date: Tue, 26 Nov 2024 15:28:15 +0100 Subject: [PATCH] bake: missing attributes on group and target types Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com> --- src/types/buildx/bake.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/types/buildx/bake.ts b/src/types/buildx/bake.ts index e257dc5..8230715 100644 --- a/src/types/buildx/bake.ts +++ b/src/types/buildx/bake.ts @@ -20,18 +20,22 @@ export interface BakeDefinition { } export interface Group { + description?: string; targets: Array; } export interface Target { + description?: string; args?: Record; attest?: Array; 'cache-from'?: Array; 'cache-to'?: Array; + call?: string; context: string; contexts?: Record; dockerfile: string; 'dockerfile-inline'?: string; + entitlements?: Array; labels?: Record; 'no-cache'?: boolean; 'no-cache-filter'?: Array;