ingress-nginx-helm/images/nginx-slim/Makefile
2017-04-02 16:07:38 -03:00

14 lines
273 B
Makefile

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