ingress-nginx-helm/echoheaders/Makefile

12 lines
215 B
Makefile
Raw Normal View History

2016-02-21 16:13:08 -08:00
all: push
# TAG 0.0 shouldn't clobber any release builds
2016-05-19 16:11:51 -03:00
TAG = 1.4
2016-02-21 16:13:08 -08:00
PREFIX = gcr.io/google_containers/echoserver
container:
docker build -t $(PREFIX):$(TAG) .
push: container
gcloud docker push $(PREFIX):$(TAG)