From 6a1ec8db258683d400a74e68feec5516e56d1cf4 Mon Sep 17 00:00:00 2001 From: discord9 <55937128+discord9@users.noreply.github.com> Date: Mon, 6 Jan 2025 17:06:10 +0800 Subject: [PATCH] chore: cleanup dockerfile (#5299) chore: cleanup --- docker/dev-builder/ubuntu/Dockerfile | 9 --------- 1 file changed, 9 deletions(-) diff --git a/docker/dev-builder/ubuntu/Dockerfile b/docker/dev-builder/ubuntu/Dockerfile index 9f16161ac0..d0f5cb4f22 100644 --- a/docker/dev-builder/ubuntu/Dockerfile +++ b/docker/dev-builder/ubuntu/Dockerfile @@ -38,15 +38,6 @@ fi RUN mv protoc3/bin/* /usr/local/bin/ RUN mv protoc3/include/* /usr/local/include/ -# 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 apt-get remove -y gcc-9 g++-9 cpp-9 && \ - apt-get install -y gcc-10 g++-10 cpp-10 make cmake && \ - ln -sf /usr/bin/gcc-10 /usr/bin/gcc && ln -sf /usr/bin/g++-10 /usr/bin/g++ && \ - ln -sf /usr/bin/gcc-10 /usr/bin/cc && \ - ln -sf /usr/bin/g++-10 /usr/bin/cpp && ln -sf /usr/bin/g++-10 /usr/bin/c++ && \ - cc --version && gcc --version && g++ --version && cpp --version && c++ --version - # Remove Python 3.8 and install pip. RUN apt-get -y purge python3.8 && \ apt-get -y autoremove && \