kubernetes/build/debian-iptables/Makefile
2015-11-12 17:46:39 -08:00

13 lines
237 B
Makefile

.PHONY: build push
IMAGE = debian-iptables
TAG = v1
build:
docker build -t beta.gcr.io/google_containers/$(IMAGE):$(TAG) .
push: build
gcloud docker --server=beta.gcr.io push beta.gcr.io/google_containers/$(IMAGE):$(TAG)
all: push