Makefile for build pause image and push to gcr.io

pull/6/head
Dawn Chen 2015-03-31 14:52:12 -07:00
parent 0907143f88
commit 48cd904a20
1 changed files with 13 additions and 0 deletions

13
build/pause/Makefile Normal file
View File

@ -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