summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2026-06-22 13:37:44 +0100
committerJoe Carstairs <me@joeac.net>2026-06-22 13:37:44 +0100
commit689ff9bd5c0f88bd12d18ee97f8205817b9fb010 (patch)
tree9635a2334dff7ea49d7d006cb1c0755212cc654f /Makefile
parent7c3ce01b27510ffcf0026bca83f4615745426e41 (diff)
podman-compose builds to $(container_image_name)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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 =