Add image with redirect

This commit is contained in:
Manuel de Brito Fontes 2016-05-19 21:30:04 -03:00
parent 076de3e8a7
commit 7878600981
5 changed files with 124 additions and 0 deletions

View file

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