From 15db6dce001e0caf3a5e63c3af7ceaa8d4941729 Mon Sep 17 00:00:00 2001 From: Manfred Touron Date: Tue, 20 Dec 2016 13:36:25 +0100 Subject: [PATCH] Add docker helpers in Makefile --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Makefile b/Makefile index c68adf7..83cdc7a 100644 --- a/Makefile +++ b/Makefile @@ -10,3 +10,11 @@ install: test: build cd examples/dummy && make cd examples/js-grpc && make + +.PHONY: docker.build +docker.build: + docker build --pull -t moul/protoc-gen-gotemplate . + +.PHONY: docker.push +docker.push: docker.build + docker push moul/protoc-gen-gotemplate