Skip to content

Commit

Permalink
Fix so make == make push in the kube-cross Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
luxas committed Apr 20, 2016
1 parent d1c5ae6 commit c7233ab
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions build/build-image/cross/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,14 @@

.PHONY: build push

IMAGE = kube-cross
TAG = $(shell cat VERSION)
IMAGE=kube-cross
TAG=$(shell cat VERSION)


all: push

build:
docker build -t gcr.io/google_containers/$(IMAGE):$(TAG) .

push: build
gcloud docker --server=gcr.io push gcr.io/google_containers/$(IMAGE):$(TAG)

all: push

0 comments on commit c7233ab

Please sign in to comment.