Skip to content

Commit

Permalink
fix: use gcc-10 in release dev build
Browse files Browse the repository at this point in the history
  • Loading branch information
discord9 committed Sep 19, 2024
1 parent 36b1baf commit d262b4b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions docker/dev-builder/ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
python3.10 \
python3.10-dev

# https://github.com/GreptimeTeam/greptimedb/actions/runs/10935485852/job/30357457188#step:3:7106
# `aws-lc-sys` require gcc >= 10.3.0 to work, hence alias to use gcc-10
RUN alias gcc="gcc-10" && alias cc="gcc-10"

# Remove Python 3.8 and install pip.
RUN apt-get -y purge python3.8 && \
apt-get -y autoremove && \
Expand Down

0 comments on commit d262b4b

Please sign in to comment.