7 lines
211 B
Docker
Raw Normal View History

2016-12-01 10:08:51 +01:00
FROM znly/protoc
RUN apk --update add make git go rsync
2016-11-06 20:30:15 +01:00
COPY . /go/src/github.com/moul/protoc-gen-gotemplate
WORKDIR /go/src/github.com/moul/protoc-gen-gotemplate
RUN go install .
ENV PATH=${PATH}:${GOPATH}/bin