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

houqp 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 2f04d67  fix docker for cli (#1046)
2f04d67 is described below

commit 2f04d67156ec91afa628a3ed47003b8f992450bf
Author: Jiayu Liu <[email protected]>
AuthorDate: Thu Sep 30 03:23:15 2021 +0800

    fix docker for cli (#1046)
---
 datafusion-cli/Dockerfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/datafusion-cli/Dockerfile b/datafusion-cli/Dockerfile
index 4ba085b..d24a55f 100644
--- a/datafusion-cli/Dockerfile
+++ b/datafusion-cli/Dockerfile
@@ -15,7 +15,7 @@
 # specific language governing permissions and limitations
 # under the License.
 
-FROM rust:latest as builder
+FROM rust:1.55 as builder
 
 COPY ./datafusion /usr/src/datafusion
 
@@ -29,7 +29,7 @@ RUN rustup component add rustfmt
 
 RUN cargo build --release
 
-FROM debian:buster-slim
+FROM debian:bullseye-slim
 
 COPY --from=builder /usr/src/datafusion-cli/target/release/datafusion-cli 
/usr/local/bin
 

Reply via email to