Move custom images out of contrib

This commit is contained in:
bprashanth 2017-01-31 10:19:58 -08:00
parent 3e87a2de40
commit d002ca2f5e
12 changed files with 435 additions and 0 deletions

View file

@ -0,0 +1,14 @@
all: push
# 0.0.0 shouldn't clobber any released builds
TAG = 0.13
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