From 3ba5d88be70d2bc80d58363e888f6e078a846457 Mon Sep 17 00:00:00 2001 From: whg517 Date: Tue, 3 Sep 2024 09:58:38 +0800 Subject: [PATCH] fix(ci): fix dockerfile missing when build bundle image (#70) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c13af06..7a94054 100644 --- a/Makefile +++ b/Makefile @@ -259,7 +259,7 @@ bundle-push: ## Push the bundle image. bundle-buildx: ## Build the bundle image. - $(CONTAINER_TOOL) buildx create --name project-v3-builder $(CONTAINER_TOOL) buildx use project-v3-builder - $(CONTAINER_TOOL) buildx build --push --platform=$(PLATFORMS) --tag $(BUNDLE_IMG) -f bundle.Dockerfile.cross . + $(CONTAINER_TOOL) buildx build --push --platform=$(PLATFORMS) --tag $(BUNDLE_IMG) -f bundle.Dockerfile . $(CONTAINER_TOOL) buildx rm project-v3-builder .PHONY: bundle-run