Skip to content

Commit

Permalink
fix: install python3-pip in Dockerfile (#1644)
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
yaoyinnan authored May 25, 2023
1 parent 9537931 commit cd1ccb1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down

0 comments on commit cd1ccb1

Please sign in to comment.