ingress-nginx-helm/echoheaders-redirect/Makefile
Manuel de Brito Fontes 7878600981 Add image with redirect
2016-05-19 21:30:04 -03:00

11 lines
224 B
Makefile

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)