ingress-nginx-helm/images/nginx-slim/Makefile
Prashanth Balasubramanian 3da4e74e5a git mv Ingress ingress
2016-02-26 16:55:24 -08:00

14 lines
262 B
Makefile

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