Skip to content

Commit

Permalink
fix: add the missed 'catalog' section in makefile (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
lwpk110 authored Oct 21, 2024
1 parent 9c6f5ae commit 988fb9a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -306,8 +306,8 @@ OPM = $(shell which opm)
endif
endif

.PHONY: catalog-build
catalog-build: opm ## Build a catalog manifests.
.PHONY: catalog
catalog: opm ## Build a catalog manifests.
mkdir -p catalog
@if ! test -f ./catalog.Dockerfile; then \
$(OPM) generate dockerfile catalog; \
Expand All @@ -319,12 +319,12 @@ catalog-validate: opm ## Validate a catalog manifests.
$(OPM) validate catalog

.PHONY: catalog-build
catalog-docker-build: ## Build a catalog image.
catalog-build: ## Build a catalog image.
$(CONTAINER_TOOL) build -t ${CATALOG_IMG} -f catalog.Dockerfile .

# Push the catalog image.
.PHONY: catalog-push
catalog-push: ## Push a catalog image.
.PHONY: catalog-docker-push
catalog-docker-push: ## Push a catalog image.
$(MAKE) docker-push IMG=$(CATALOG_IMG)

.PHONY: catalog-buildx
Expand Down

0 comments on commit 988fb9a

Please sign in to comment.