build: upgrade buf and contrib/devtools/dockerfile protoc-gen-go version (#10599)

* build: upgrade buf and contrib/devtools/dockerfile protoc-gen-go version

* fix
This commit is contained in:
Aaron Craelius
2021-11-23 12:47:45 -05:00
committed by GitHub
parent e04f2d6a5d
commit 68ee1c477f
10 changed files with 55 additions and 27 deletions
+4 -3
View File
@@ -2,13 +2,14 @@ FROM bufbuild/buf:latest as BUILDER
FROM golang:alpine
ENV GOLANG_PROTOBUF_VERSION=1.3.5 \
ENV GOLANG_PROTOBUF_VERSION=1.27.1 \
GOGO_PROTOBUF_VERSION=1.3.2 \
GRPC_GATEWAY_VERSION=1.14.7
GRPC_GATEWAY_VERSION=1.14.7
RUN GO111MODULE=on go get \
github.com/golang/protobuf/protoc-gen-go@v${GOLANG_PROTOBUF_VERSION} \
github.com/cosmos/cosmos-proto/cmd/protoc-gen-go-pulsar@latest \
google.golang.org/protobuf/cmd/protoc-gen-go@v${GOLANG_PROTOBUF_VERSION} \
github.com/gogo/protobuf/protoc-gen-gogo@v${GOGO_PROTOBUF_VERSION} \
github.com/gogo/protobuf/protoc-gen-gogofast@v${GOGO_PROTOBUF_VERSION} \
github.com/gogo/protobuf/protoc-gen-gogofaster@v${GOGO_PROTOBUF_VERSION} \