tools/docker/noble: update to gcc-14

This commit is contained in:
Rudi Heitbaum 2024-06-12 14:04:41 +00:00
parent 53c54bd15e
commit af63fb8dee

View File

@ -18,8 +18,8 @@ RUN useradd docker -U -G sudo -m -s /bin/bash \
RUN apt-get update
RUN apt-get install -y \
wget bash bc gcc-13 cpp-13 sed patch patchutils tar bzip2 gzip xz-utils zstd perl gawk gperf zip \
unzip diffutils lzop make file g++-13 xfonts-utils xsltproc default-jre-headless python3 \
wget bash bc gcc-14 cpp-14 sed patch patchutils tar bzip2 gzip xz-utils zstd perl gawk gperf zip \
unzip diffutils lzop make file g++-14 xfonts-utils xsltproc default-jre-headless python3 \
libc6-dev libncurses5-dev libjson-perl libxml-parser-perl libparse-yapp-perl rdfind \
golang-go git openssh-client \
--no-install-recommends
@ -30,10 +30,10 @@ RUN if [ "$(uname -m)" = "aarch64" ]; then \
RUN rm -rf /var/lib/apt/lists/*
RUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 100 \
--slave /usr/bin/cpp cpp /usr/bin/cpp-13 \
--slave /usr/bin/g++ g++ /usr/bin/g++-13 \
--slave /usr/bin/gcov gcov /usr/bin/gcov-13
RUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-14 100 \
--slave /usr/bin/cpp cpp /usr/bin/cpp-14 \
--slave /usr/bin/g++ g++ /usr/bin/g++-14 \
--slave /usr/bin/gcov gcov /usr/bin/gcov-14
RUN update-alternatives --config gcc
USER docker