
This automatically escapes things, and makes the code easier to read. template.lua was slightly modifed to not escape /, so it is vendored.
11 lines
218 B
Makefile
11 lines
218 B
Makefile
all: push
|
|
|
|
# TAG 0.0 shouldn't clobber any release builds
|
|
TAG = 1.6
|
|
PREFIX = gcr.io/google_containers/echoserver
|
|
|
|
container:
|
|
docker build -t $(PREFIX):$(TAG) .
|
|
|
|
push: container
|
|
gcloud docker -- push $(PREFIX):$(TAG)
|