From 36154c4547de3b3394524586c6e4648e9100b540 Mon Sep 17 00:00:00 2001 From: xuezhao Date: Thu, 28 Nov 2024 15:14:40 +0800 Subject: [PATCH] Fix: make build-image-amd64 to load image from cache to disk. (#432) Signed-off-by: xuezhaojun --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8625ab22..ad95d20e 100644 --- a/Makefile +++ b/Makefile @@ -78,7 +78,7 @@ build-image: ## Builds controller image using buildx for amd64 .PHONY: build-image-amd64 build-image-amd64: - $(DOCKER_BUILDER) buildx build --platform linux/amd64 -f $(DOCKER_FILE) . -t $(DOCKER_IMAGE) + $(DOCKER_BUILDER) buildx build --platform linux/amd64 --load -f $(DOCKER_FILE) . -t $(DOCKER_IMAGE) ## Clean build-harness and remove test files .PHONY: clean