File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ IMG_TAG_CACHESERVER ?= cache-server
10
10
IMG_TAG_SCHEDULEDWORKFLOW ?= scheduledworkflow
11
11
IMG_TAG_VIEWERCONTROLLER ?= viewercontroller
12
12
IMG_TAG_VISUALIZATION ?= visualization
13
+ IMG_TAG_DRIVER ?= kfp-driver
14
+ IMG_TAG_LAUNCHER ?= kfp-launcher
13
15
14
16
# Whenever build command for any of the binaries change, we should update them both here and in backend/Dockerfiles.
15
17
@@ -60,7 +62,7 @@ license_launcher: $(BUILD)/launcher
60
62
cd $(MOD_ROOT ) && go-licenses csv ./backend/src/v2/cmd/launcher-v2 > $(CSV_PATH ) /launcher.csv
61
63
62
64
.PHONY : image_all
63
- image_all : image_apiserver image_persistence_agent image_cache image_swf image_viewer image_visualization
65
+ image_all : image_apiserver image_persistence_agent image_cache image_swf image_viewer image_visualization image_driver image_launcher
64
66
65
67
.PHONY : image_apiserver
66
68
image_apiserver :
@@ -80,3 +82,9 @@ image_viewer:
80
82
.PHONY : image_visualization
81
83
image_visualization :
82
84
cd $(MOD_ROOT ) && ${CONTAINER_ENGINE} build -t ${IMG_TAG_VISUALIZATION} -f backend/Dockerfile.visualization .
85
+ .PHONY : image_driver
86
+ image_driver :
87
+ cd $(MOD_ROOT ) && ${CONTAINER_ENGINE} build -t ${IMG_TAG_DRIVER} -f backend/Dockerfile.driver .
88
+ .PHONY : image_launcher
89
+ image_launcher :
90
+ cd $(MOD_ROOT ) && ${CONTAINER_ENGINE} build -t ${IMG_TAG_LAUNCHER} -f backend/Dockerfile.launcher .
You can’t perform that action at this time.
0 commit comments