Publish echoheader image

This commit is contained in:
Manuel de Brito Fontes 2017-05-28 17:05:03 -04:00
parent 32f24380ec
commit c18c8f76ba
5 changed files with 169 additions and 0 deletions

View file

@ -0,0 +1,11 @@
all: push
# TAG 0.0 shouldn't clobber any release builds
TAG = 1.5
PREFIX = gcr.io/google_containers/echoserver
container:
docker build -t $(PREFIX):$(TAG) .
push: container
gcloud docker -- push $(PREFIX):$(TAG)