From 0ca5f298852af4f729219c9e2ab8a571de651cd1 Mon Sep 17 00:00:00 2001 From: Jason Wang <56037774+JasonW404@users.noreply.github.com> Date: Wed, 26 Nov 2025 14:35:07 +0800 Subject: [PATCH] feat: Add build target for generic docker builds in Makefile (#110) * feature: Add build target for generic docker builds in Makefile --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 5b20247..0ff4192 100644 --- a/Makefile +++ b/Makefile @@ -166,6 +166,10 @@ VALID_BUILD_TARGETS := backend database frontend runtime backend-python deer-flo $(call docker-build,$*,datamate-$*); \ fi +.PHONY: build-% +build-%: %-docker-build + @: + .PHONY: build build: database-docker-build backend-docker-build frontend-docker-build runtime-docker-build backend-python-docker-build