Skip to content

Commit d4b8b6c

Browse files
committed
Fix: update bundle-build target to use standard build command
1 parent 0c591e7 commit d4b8b6c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -286,8 +286,8 @@ bundle: manifests kustomize operator-sdk ## Generate bundle manifests and metada
286286
cp -r chart/* deploy/chart/$(VERSION)/
287287

288288
.PHONY: bundle-build
289-
bundle-build: ## Build the bundle image (multi-arch).
290-
$(CONTAINER_TOOL) buildx build --push --platform=$(PLATFORMS) -f bundle.Dockerfile -t $(BUNDLE_IMG) .
289+
bundle-build: ## Build the bundle image.
290+
$(CONTAINER_TOOL) build -f bundle.Dockerfile -t $(BUNDLE_IMG) .
291291

292292
.PHONY: bundle-push
293293
bundle-push: ## Push the bundle image.

0 commit comments

Comments
 (0)