ingress-nginx-helm/images/nginx-slim/Makefile
Prashanth B 477c1ba0fa Merge pull request #289 from aledbf/update-nginx-slim
[nginx-slim] Update nginx-slim to 1.11.10
2017-02-17 22:43:10 +05:30

14 lines
273 B
Makefile

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