Skip to content

Commit

Permalink
Merge pull request #24565 from luxas/fix_kube_cross_push
Browse files Browse the repository at this point in the history
Automatic merge from submit-queue

Fix so make == make push in the kube-cross Makefile

ref: #23931 (comment)
@david-mcmahon
  • Loading branch information
k8s-merge-robot committed Apr 20, 2016
2 parents 5fe6f39 + c7233ab commit 2f70b03
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 2f70b03

Please sign in to comment.