Skip to content

Commit

Permalink
Makefile for build pause image and push to gcr.io
Browse files Browse the repository at this point in the history
  • Loading branch information
dchen1107 committed Mar 31, 2015
1 parent 0907143 commit 48cd904
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions build/pause/Makefile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 48cd904

Please sign in to comment.