ingress-nginx-helm/echoheaders-redirect/Makefile

12 lines
224 B
Makefile
Raw Normal View History

2016-05-20 00:30:04 +00:00
all: push
# TAG 0.0 shouldn't clobber any release builds
TAG = 1.3
PREFIX = gcr.io/google_containers/echoserver-redirect
container:
docker build -t $(PREFIX):$(TAG) .
push: container
gcloud docker push $(PREFIX):$(TAG)