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 2020/04/07 13:25:25 UTC

[arrow] branch master updated: ARROW-8357: [Rust] [DataFusion] Add format dir to dockerfile for CLI

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.git


The following commit(s) were added to refs/heads/master by this push:
     new 1d6d367  ARROW-8357: [Rust] [DataFusion] Add format dir to dockerfile for CLI
1d6d367 is described below

commit 1d6d3674adf975ef0852f34eab08a6e7a5dc4542
Author: Andy Grove <an...@gmail.com>
AuthorDate: Tue Apr 7 07:25:06 2020 -0600

    ARROW-8357: [Rust] [DataFusion] Add format dir to dockerfile for CLI
    
    Docker image for DataFusion CLI now builds as per the instructions in the repo.
    
    Closes #6860 from andygrove/ARROW-8357
    
    Authored-by: Andy Grove <an...@gmail.com>
    Signed-off-by: Andy Grove <an...@gmail.com>
---
 rust/datafusion/Dockerfile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/rust/datafusion/Dockerfile b/rust/datafusion/Dockerfile
index 8b16313..97e82b4 100644
--- a/rust/datafusion/Dockerfile
+++ b/rust/datafusion/Dockerfile
@@ -17,6 +17,7 @@
 
 FROM rustlang/rust:nightly
 
+COPY format /arrow/format/
 COPY rust /arrow/rust/
 WORKDIR /arrow/rust/datafusion
 RUN cargo install --bin datafusion-cli --path .