Skip to content

Commit e4b0a7e

Browse files
authored
Fix datafusion-cli docker build (#912)
1 parent 1dab962 commit e4b0a7e

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

datafusion-cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
[package]
1919
name = "datafusion-cli"
20-
version = "4.0.0-SNAPSHOT"
20+
version = "5.1.0-SNAPSHOT"
2121
authors = ["Apache Arrow <[email protected]>"]
2222
edition = "2018"
2323
keywords = [ "arrow", "datafusion", "ballista", "query", "sql", "cli", "repl" ]

datafusion-cli/Dockerfile

+4
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,12 @@ COPY ./datafusion /usr/src/datafusion
2121

2222
COPY ./datafusion-cli /usr/src/datafusion-cli
2323

24+
COPY ./ballista /usr/src/ballista
25+
2426
WORKDIR /usr/src/datafusion-cli
2527

28+
RUN rustup component add rustfmt
29+
2630
RUN cargo build --release
2731

2832
FROM debian:buster-slim

0 commit comments

Comments
 (0)