ingress-nginx-helm/echoheaders/Makefile
Prashanth Balasubramanian 3da4e74e5a git mv Ingress ingress
2016-02-26 16:55:24 -08:00

11 lines
215 B
Makefile

all: push
# TAG 0.0 shouldn't clobber any release builds
TAG = 1.2
PREFIX = gcr.io/google_containers/echoserver
container:
docker build -t $(PREFIX):$(TAG) .
push: container
gcloud docker push $(PREFIX):$(TAG)