389b6e9927
This removes the requirement of the build machine having protobuf and any extensions installed.
8 lines
279 B
Docker
8 lines
279 B
Docker
FROM golang:alpine
|
|
|
|
RUN apk add --update --no-cache git bash protobuf-dev
|
|
|
|
RUN go get -u github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway
|
|
RUN go get -u github.com/grpc-ecosystem/grpc-gateway/protoc-gen-swagger
|
|
RUN go get -u github.com/golang/protobuf/protoc-gen-go
|