ingress-nginx-helm/images/haproxy/Makefile

17 lines
308 B
Makefile
Raw Normal View History

2016-02-22 00:13:08 +00:00
all: push
# 0.0.0 shouldn't clobber any released builds
TAG = 0.2
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