ingress-nginx-helm/images/echoheaders/Makefile

12 lines
218 B
Makefile
Raw Normal View History

2017-05-28 21:05:03 +00:00
all: push
# TAG 0.0 shouldn't clobber any release builds
2017-07-17 18:55:56 +00:00
TAG = 1.7
2017-05-28 21:05:03 +00:00
PREFIX = gcr.io/google_containers/echoserver
container:
docker build -t $(PREFIX):$(TAG) .
push: container
gcloud docker -- push $(PREFIX):$(TAG)