Skip to content

Commit

Permalink
ci: remove the old version python (#2624)
Browse files Browse the repository at this point in the history
ci: remove old version python
  • Loading branch information
zyy17 authored Oct 19, 2023
1 parent 6439b92 commit 88dd78a
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions docker/dev-builder/ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,13 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
build-essential \
pkg-config \
python3.10 \
python3.10-dev \
python3-pip
python3.10-dev

# Remove Python 3.8 and install pip.
RUN apt-get -y purge python3.8 && \
apt-get -y autoremove && \
ln -s /usr/bin/python3.10 /usr/bin/python3 && \
curl -sS https://bootstrap.pypa.io/get-pip.py | python3.10

RUN git config --global --add safe.directory /greptimedb

Expand Down

0 comments on commit 88dd78a

Please sign in to comment.