ingress-nginx-helm/images/echoheaders/Makefile
Manuel de Brito Fontes c18c8f76ba Publish echoheader image
2017-05-30 13:51:32 -04:00

11 lines
218 B
Makefile

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