Files
kubernetes/test/images/hostexec/Makefile
Dr. Stefan Schimanski 862143fc62 Add hostexec test image
2015-11-11 22:48:56 +01:00

17 lines
222 B
Makefile

.PHONY: all image push clean
TAG = 1.2
PREFIX = gcr.io/google_containers
all: push
image:
docker build -t $(PREFIX)/hostexec:$(TAG) .
push: image
gcloud docker push $(PREFIX)/hostexec:$(TAG)
clean:
rm -f hostexec