protoc-gen-go-micro/Dockerfile
2016-11-06 20:30:15 +01:00

6 lines
179 B
Docker

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"]