avantgardnerio commented on code in PR #249: URL: https://github.com/apache/arrow-ballista/pull/249#discussion_r974870002
########## dev/docker/ballista-builder.Dockerfile: ########## @@ -15,18 +15,34 @@ # specific language governing permissions and limitations # under the License. -FROM ubuntu +FROM rust:1.63.0-buster + +ARG EXT_UID + +ENV RUST_LOG=info +ENV RUST_BACKTRACE=full +ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update && \ - apt-get install -y git build-essential + apt-get -y install libssl-dev openssl zlib1g zlib1g-dev libpq-dev cmake protobuf-compiler netcat curl unzip \ + nodejs npm && \ Review Comment: We probably want a newer node at some point, but I ran into a lot of trouble with every non-apt option. -- 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]
