From cd1ccb110bc0f825287de081385ca0acf80181d3 Mon Sep 17 00:00:00 2001 From: Yinnan Yao Date: Thu, 25 May 2023 23:00:39 +0800 Subject: [PATCH] fix: install python3-pip in Dockerfile (#1644) When I use docker build to build the image, I get an error that pip is missing. Add install python3-pip in Dockerfile. Fixes: #1643 Signed-off-by: yaoyinnan --- docker/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 622c9cc1ff..f137437abb 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -12,7 +12,9 @@ RUN apt-get update && apt-get install -y \ pkg-config \ python3 \ python3-dev \ - && pip install pyarrow + python3-pip \ + && pip3 install --upgrade pip \ + && pip3 install pyarrow # Install Rust. SHELL ["/bin/bash", "-c"]