ingress-nginx-helm/images/nginx-slim/Makefile

15 lines
273 B
Makefile
Raw Normal View History

2017-01-31 10:19:58 -08:00
all: push
# 0.0.0 shouldn't clobber any released builds
2017-02-16 13:11:20 -03:00
TAG = 0.14
2017-01-31 10:19:58 -08:00
PREFIX = gcr.io/google_containers/nginx-slim
container:
docker build --pull -t $(PREFIX):$(TAG) .
push: container
2017-02-16 17:13:36 -08:00
gcloud docker -- push $(PREFIX):$(TAG)
2017-01-31 10:19:58 -08:00
clean:
docker rmi -f $(PREFIX):$(TAG) || true