From 61714f8d9ae62f4621170af30c884b2dcf089461 Mon Sep 17 00:00:00 2001 From: Tomas Repel Date: Fri, 17 Jan 2025 11:31:22 +0100 Subject: [PATCH] Enable specification of the container engine for catalog builds Signed-off-by: Tomas Repel --- make/catalog.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make/catalog.mk b/make/catalog.mk index ca6421416..5172f2ce9 100644 --- a/make/catalog.mk +++ b/make/catalog.mk @@ -59,7 +59,7 @@ catalog: $(OPM) ## Generate catalog content and validate. .PHONY: catalog-build catalog-build: ## Build a catalog image. # Build the Catalog - docker build $(PROJECT_PATH)/catalog -f $(PROJECT_PATH)/catalog/kuadrant-operator-catalog.Dockerfile -t $(CATALOG_IMG) + $(CONTAINER_ENGINE) build $(PROJECT_PATH)/catalog -f $(PROJECT_PATH)/catalog/kuadrant-operator-catalog.Dockerfile -t $(CATALOG_IMG) # Push the catalog image. .PHONY: catalog-push