Skip to content

Commit 28cca1e

Browse files
committed
Address PR comments
1 parent 0e7f8dd commit 28cca1e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BIN_DIR=_output/bin
22
BIN_OSARCH=linux/amd64
3-
IMAGE=volcanosh/vk
3+
IMAGE_PREFIX=volcanosh/vk
44
TAG = latest
55

66
.EXPORT_ALL_VARIABLES:
@@ -23,7 +23,7 @@ image_bins:
2323
images: image_bins
2424
for name in controllers scheduler admission; do\
2525
cp ${BIN_DIR}/${BIN_OSARCH}/vk-$$name ./installer/dockerfile/$$name/; \
26-
docker build --no-cache -t $(IMAGE)-$$name:$(TAG) ./installer/dockerfile/$$name; \
26+
docker build --no-cache -t $(IMAGE_PREFIX)-$$name:$(TAG) ./installer/dockerfile/$$name; \
2727
rm installer/dockerfile/$$name/vk-$$name; \
2828
done
2929

0 commit comments

Comments
 (0)