diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..b64b0cf --- /dev/null +++ b/Dockerfile @@ -0,0 +1,5 @@ +FROM golang:1.7.3 +COPY . /go/src/github.com/moul/protoc-gen-gotemplate +WORKDIR /go/src/github.com/moul/protoc-gen-gotemplate +RUN go install . +ENTRYPOINT ["protoc-gen-gotemplate"]