ingress-nginx-helm/images/echoheaders/Makefile
2017-07-17 14:55:56 -04:00

11 lines
218 B
Makefile

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