Skip to content
This repository was archived by the owner on May 6, 2020. It is now read-only.

Commit a1e28c8

Browse files
committed
feat(Makefile): set docker build flags via environment variable
1 parent 30b9411 commit a1e28c8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ uninstall: kube-delete
1212
upgrade: kube-update
1313

1414
docker-build:
15-
docker build -t ${IMAGE} rootfs
15+
docker build ${DOCKER_BUILD_FLAGS} -t ${IMAGE} rootfs
1616
docker tag ${IMAGE} ${MUTABLE_IMAGE}
1717

1818
kube-delete:

versioning.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ docker-immutable-push:
1919

2020
.PHONY: docker-mutable-push
2121
docker-mutable-push:
22-
docker push ${MUTABLE_IMAGE}
22+
docker push ${MUTABLE_IMAGE}

0 commit comments

Comments
 (0)