We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf3ae82 commit f265209Copy full SHA for f265209
Dockerfiles/CI/Dockerfile
@@ -16,5 +16,7 @@ RUN set -ex \
16
&& go get golang.org/x/lint/golint \
17
# Protobuf tooling
18
&& go get github.com/golang/protobuf/protoc-gen-go \
19
+ && mkdir protobuf && cd protobuf \
20
&& curl -LO https://github.com/google/protobuf/releases/download/v$PROTOBUF_VER/protoc-$PROTOBUF_VER-linux-x86_64.zip \
- && mkdir protobuf && unzip protoc-$PROTOBUF_VER-linux-x86_64.zip && cp protobuf/bin/* /bin/ && rm -rf protobuf
21
+ && unzip protoc-$PROTOBUF_VER-linux-x86_64.zip && cp ./bin/* /bin/ \
22
+ && cd .. && rm -rf protobuf
0 commit comments