diff --git a/backend/Makefile b/backend/Makefile index 9884d44b38e..583a0d6674e 100644 --- a/backend/Makefile +++ b/backend/Makefile @@ -10,6 +10,8 @@ IMG_TAG_CACHESERVER ?= cache-server IMG_TAG_SCHEDULEDWORKFLOW ?= scheduledworkflow IMG_TAG_VIEWERCONTROLLER ?= viewercontroller IMG_TAG_VISUALIZATION ?= visualization +IMG_TAG_DRIVER ?= kfp-driver +IMG_TAG_LAUNCHER ?= kfp-launcher # Whenever build command for any of the binaries change, we should update them both here and in backend/Dockerfiles. @@ -60,7 +62,7 @@ license_launcher: $(BUILD)/launcher cd $(MOD_ROOT) && go-licenses csv ./backend/src/v2/cmd/launcher-v2 > $(CSV_PATH)/launcher.csv .PHONY: image_all -image_all: image_apiserver image_persistence_agent image_cache image_swf image_viewer image_visualization +image_all: image_apiserver image_persistence_agent image_cache image_swf image_viewer image_visualization image_driver image_launcher .PHONY: image_apiserver image_apiserver: @@ -80,3 +82,9 @@ image_viewer: .PHONY: image_visualization image_visualization: cd $(MOD_ROOT) && ${CONTAINER_ENGINE} build -t ${IMG_TAG_VISUALIZATION} -f backend/Dockerfile.visualization . +.PHONY: image_driver +image_driver: + cd $(MOD_ROOT) && ${CONTAINER_ENGINE} build -t ${IMG_TAG_DRIVER} -f backend/Dockerfile.driver . +.PHONY: image_launcher +image_launcher: + cd $(MOD_ROOT) && ${CONTAINER_ENGINE} build -t ${IMG_TAG_LAUNCHER} -f backend/Dockerfile.launcher .