ingress-nginx-helm/images/nginx-slim/Makefile
Manuel de Brito Fontes 4c7df76c39 Update nginx-slim
2016-03-25 17:55:00 -03:00

14 lines
262 B
Makefile

all: push
# 0.0.0 shouldn't clobber any released builds
TAG = 0.4
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