We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 562fead commit fafe07bCopy full SHA for fafe07b
1 file changed
Dockerfile
@@ -103,7 +103,9 @@ RUN apt-get update \
103
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
104
105
RUN update-alternatives --install /usr/bin/cc cc /usr/bin/gcc-12 100 && \
106
- update-alternatives --install /usr/bin/c++ c++ /usr/bin/g++-12 100
+ update-alternatives --install /usr/bin/c++ c++ /usr/bin/g++-12 100 && \
107
+ update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-12 100 && \
108
+ update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-12 100
109
110
# Install LLVM 20 (for clang-format) and latest git (custom, newer versions)
111
RUN echo "deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-20 main" > /etc/apt/sources.list.d/llvm20.list \
0 commit comments