protoc-gen-go-micro/Dockerfile

6 lines
179 B
Docker
Raw Normal View History

2016-11-06 22:30:15 +03:00
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"]