From 689ff9bd5c0f88bd12d18ee97f8205817b9fb010 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Mon, 22 Jun 2026 13:37:44 +0100 Subject: [PATCH] podman-compose builds to $(container_image_name) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d1824a9..270bc22 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ container_image_name = $(REGISTRY_DOMAIN)/$(REGISTRY_USER)/$(IMAGE_PREFIX)$(modu define build_module_rule = .PHONY: build_$(module) build_$(module): $(module) - sudo podman-compose build $(module) + sudo podman-compose build $(module) -t $(container_image_name) endef define push_module_rule =