ingress-nginx-helm/images/echoheaders/Makefile
Ryan Hitchman e5d5bda1ca Rewrite echoheaders to use openresty's templating.
This automatically escapes things, and makes the code easier to read.

template.lua was slightly modifed to not escape /, so it is vendored.
2017-06-14 17:54:53 -07:00

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)