From 410e279c0e26b7db6d9b8a2ea9d64dad9b99e91d Mon Sep 17 00:00:00 2001 From: Jake Date: Tue, 30 Jul 2024 13:57:11 +0100 Subject: [PATCH] fix: build helm image multi arch --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7c9033c..063b333 100644 --- a/Makefile +++ b/Makefile @@ -43,7 +43,10 @@ build-and-push-operator-promise-aspect: . build-helm-promise-aspect: - docker build \ + docker buildx build \ + --builder kratix-cli-image-builder \ + --push \ + --platform linux/arm64,linux/amd64\ --tag ${HELM_ASPECT_TAG}:${KRATIX_CLI_VERSION} \ --tag ${HELM_ASPECT_TAG}:latest \ --file aspects/helm-promise/Dockerfile \