Commit f265209f authored by Massimiliano Pippi's avatar Massimiliano Pippi

fix paths

parent bf3ae82f
...@@ -16,5 +16,7 @@ RUN set -ex \ ...@@ -16,5 +16,7 @@ RUN set -ex \
&& go get golang.org/x/lint/golint \ && go get golang.org/x/lint/golint \
# Protobuf tooling # Protobuf tooling
&& go get github.com/golang/protobuf/protoc-gen-go \ && go get github.com/golang/protobuf/protoc-gen-go \
&& mkdir protobuf && cd protobuf \
&& curl -LO https://github.com/google/protobuf/releases/download/v$PROTOBUF_VER/protoc-$PROTOBUF_VER-linux-x86_64.zip \ && 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 && unzip protoc-$PROTOBUF_VER-linux-x86_64.zip && cp ./bin/* /bin/ \
&& cd .. && rm -rf protobuf
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment