File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -202,8 +202,10 @@ FROM docker.io/library/golang:1.23 as go-outline
202202RUN go install github.com/ramya-rao-a/go-outline@latest
203203
204204FROM docker.io/library/golang:1.23 as go-protoc
205- RUN go install google.golang.org/protobuf/cmd/
[email protected] 206- RUN go install google.golang.org/grpc/cmd/
[email protected] 205+ ARG PROTOC_GEN_GO_VERSION=v1.35.2
206+ ARG PROTOC_GEN_GO_GRPC_VERSION=v1.2
207+ RUN go install google.golang.org/protobuf/cmd/protoc-gen-go@${PROTOC_GEN_GO_VERSION}
208+ RUN go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@${PROTOC_GEN_GO_GRPC_VERSION}
207209
208210FROM docker.io/library/golang:1.23 as golangci-lint
209211RUN go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
You can’t perform that action at this time.
0 commit comments