diff --git a/build/pause/Makefile b/build/pause/Makefile new file mode 100644 index 00000000000..a968ebb519a --- /dev/null +++ b/build/pause/Makefile @@ -0,0 +1,13 @@ +.PHONY: build push + +IMAGE = pause +TAG = 0.8.0 + +build: + ./prepare.sh + docker build -t gcr.io/google_containers/$(IMAGE):$(TAG) . + +push: build + gcloud preview docker push gcr.io/google_containers/$(IMAGE):$(TAG) + +all: push