ingress-nginx-helm/images/haproxy/Makefile
Manuel de Brito Fontes 5a0ce3b06b Update haproxy image
2016-03-25 17:55:00 -03:00

16 lines
308 B
Makefile

all: push
# 0.0.0 shouldn't clobber any released builds
TAG = 0.0
PREFIX = gcr.io/google_containers/haproxy
HAPROXY_IMAGE = haproxy
container:
docker build -t $(PREFIX):$(TAG) .
push: container
gcloud docker push $(PREFIX):$(TAG)
clean:
# remove haproxy images
docker rmi -f $(PREFIX):$(TAG) || true