From b3d8a625ce27476f1f23af22220d331dc228fc8b Mon Sep 17 00:00:00 2001 From: BlackDex Date: Tue, 14 Nov 2023 22:14:25 +0100 Subject: [PATCH] Fix small bake issue --- docker/docker-bake.hcl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/docker-bake.hcl b/docker/docker-bake.hcl index 7c28b125..e7f6a94b 100644 --- a/docker/docker-bake.hcl +++ b/docker/docker-bake.hcl @@ -88,7 +88,7 @@ target "debian" { inherits = ["_default_attributes"] dockerfile = "docker/Dockerfile.debian" tags = generate_tags("", platform_tag()) - output = [join(",", flatten([["type=docker"], image_index_annotations()]))] + output = ["type=docker"] } // Multi Platform target, will build one tagged manifest with all supported architectures @@ -138,7 +138,7 @@ target "alpine" { inherits = ["_default_attributes"] dockerfile = "docker/Dockerfile.alpine" tags = generate_tags("-alpine", platform_tag()) - output = [join(",", flatten([["type=docker"], image_index_annotations()]))] + output = ["type=docker"] } // Multi Platform target, will build one tagged manifest with all supported architectures