From fcdf04900af7a8638828e3c857a9a9e79d086e61 Mon Sep 17 00:00:00 2001 From: Matt Kocubinski Date: Sat, 11 Feb 2023 09:32:32 -0700 Subject: [PATCH] pin gogoproto version in Dockerfile --- contrib/devtools/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/devtools/Dockerfile b/contrib/devtools/Dockerfile index 570562e08b97..8d4663f87524 100644 --- a/contrib/devtools/Dockerfile +++ b/contrib/devtools/Dockerfile @@ -28,7 +28,7 @@ RUN go install github.com/cosmos/cosmos-proto/cmd/protoc-gen-go-pulsar@latest && github.com/grpc-ecosystem/grpc-gateway/protoc-gen-swagger@v${GRPC_GATEWAY_VERSION} # install all gogo protobuf binaries -RUN git clone https://github.com/cosmos/gogoproto.git; \ +RUN git -b v.1.4.3 clone https://github.com/cosmos/gogoproto.git; \ cd gogoproto; \ go mod download; \ make install