avantgardnerio commented on code in PR #232: URL: https://github.com/apache/arrow-ballista/pull/232#discussion_r973241364
########## dev/docker/ballista.dockerfile: ########## @@ -44,6 +44,18 @@ RUN cargo install cargo-chef --version 0.1.34 #RUN cargo chef cook $RELEASE_FLAG --recipe-path recipe.json FROM base as builder + +RUN mkdir /tmp/protoc +WORKDIR /tmp/protoc + +RUN export PROTO_ZIP="protoc-21.4-linux-x86_64.zip" && \ + curl -LO https://github.com/protocolbuffers/protobuf/releases/download/v21.4/$PROTO_ZIP && \ Review Comment: It might be good to interpolate `21.4` into it's own variable, but better to fix these than not fix! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
