You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ag...@apache.org on 2021/08/22 14:57:12 UTC

[arrow-datafusion] branch master updated: Fix datafusion-cli docker build (#912)

This is an automated email from the ASF dual-hosted git repository.

agrove pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git


The following commit(s) were added to refs/heads/master by this push:
     new e4b0a7e  Fix datafusion-cli docker build (#912)
e4b0a7e is described below

commit e4b0a7e08073c4f137dab691e418ec21f15df430
Author: Nan Zhu <Co...@users.noreply.github.com>
AuthorDate: Sun Aug 22 07:57:07 2021 -0700

    Fix datafusion-cli docker build (#912)
---
 datafusion-cli/Cargo.toml | 2 +-
 datafusion-cli/Dockerfile | 4 ++++
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/datafusion-cli/Cargo.toml b/datafusion-cli/Cargo.toml
index 2788587..008aeec 100644
--- a/datafusion-cli/Cargo.toml
+++ b/datafusion-cli/Cargo.toml
@@ -17,7 +17,7 @@
 
 [package]
 name = "datafusion-cli"
-version = "4.0.0-SNAPSHOT"
+version = "5.1.0-SNAPSHOT"
 authors = ["Apache Arrow <de...@arrow.apache.org>"]
 edition = "2018"
 keywords = [ "arrow", "datafusion", "ballista", "query", "sql", "cli", "repl" ]
diff --git a/datafusion-cli/Dockerfile b/datafusion-cli/Dockerfile
index 2a8ab16..4ba085b 100644
--- a/datafusion-cli/Dockerfile
+++ b/datafusion-cli/Dockerfile
@@ -21,8 +21,12 @@ COPY ./datafusion /usr/src/datafusion
 
 COPY ./datafusion-cli /usr/src/datafusion-cli
 
+COPY ./ballista /usr/src/ballista
+
 WORKDIR /usr/src/datafusion-cli
 
+RUN rustup component add rustfmt
+
 RUN cargo build --release
 
 FROM debian:buster-slim