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

alamb 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 3f269b9  Fix integration tests by adding datafusion-cli module to 
docker image (#322)
3f269b9 is described below

commit 3f269b9d8f68910f20f38ec664cb407e89781c74
Author: Andy Grove <[email protected]>
AuthorDate: Wed May 12 04:24:59 2021 -0600

    Fix integration tests by adding datafusion-cli module to docker image (#322)
---
 dev/docker/rust.dockerfile | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dev/docker/rust.dockerfile b/dev/docker/rust.dockerfile
index ba713b1..0453001 100644
--- a/dev/docker/rust.dockerfile
+++ b/dev/docker/rust.dockerfile
@@ -35,6 +35,7 @@ RUN mkdir /tmp/ballista/datafusion-examples
 ADD Cargo.toml .
 COPY benchmarks ./benchmarks/
 COPY datafusion ./datafusion/
+COPY datafusion-cli ./datafusion-cli/
 COPY datafusion-examples ./datafusion-examples/
 COPY ballista ./ballista/
 RUN cargo chef prepare --recipe-path recipe.json
@@ -47,11 +48,13 @@ FROM base as builder
 RUN mkdir /tmp/ballista/ballista
 RUN mkdir /tmp/ballista/benchmarks
 RUN mkdir /tmp/ballista/datafusion
+RUN mkdir /tmp/ballista/datafusion-cli
 RUN mkdir /tmp/ballista/datafusion-examples
 ADD Cargo.toml .
 COPY benchmarks ./benchmarks/
 COPY datafusion ./datafusion/
 COPY ballista ./ballista/
+COPY datafusion-cli ./datafusion-cli/
 COPY datafusion-examples ./datafusion-examples/
 COPY --from=cacher /tmp/ballista/target target
 ARG RELEASE_FLAG=--release

Reply via email to