We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e7f8dd commit 28cca1eCopy full SHA for 28cca1e
Makefile
@@ -1,6 +1,6 @@
1
BIN_DIR=_output/bin
2
BIN_OSARCH=linux/amd64
3
-IMAGE=volcanosh/vk
+IMAGE_PREFIX=volcanosh/vk
4
TAG = latest
5
6
.EXPORT_ALL_VARIABLES:
@@ -23,7 +23,7 @@ image_bins:
23
images: image_bins
24
for name in controllers scheduler admission; do\
25
cp ${BIN_DIR}/${BIN_OSARCH}/vk-$$name ./installer/dockerfile/$$name/; \
26
- docker build --no-cache -t $(IMAGE)-$$name:$(TAG) ./installer/dockerfile/$$name; \
+ docker build --no-cache -t $(IMAGE_PREFIX)-$$name:$(TAG) ./installer/dockerfile/$$name; \
27
rm installer/dockerfile/$$name/vk-$$name; \
28
done
29
0 commit comments