File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 1- FROM debian:bookworm -slim
1+ FROM debian:trixie -slim
22
3- RUN apt-get update -y && apt-get install -y git wget build-essential lcov openssl libssl-dev python3 python3-venv rsync unzip curl m4 automake peg libtool autoconf python3-pip cmake
3+ RUN apt-get update -y && \
4+ apt-get install -y git wget build-essential lcov openssl libssl-dev python3 python3-venv rsync unzip curl m4 automake peg libtool autoconf python3-pip cmake gcc-13 g++-13
5+
6+ # Set gcc-13 and g++-13 as the default gcc/g++
7+ RUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 130 \
8+ --slave /usr/bin/g++ g++ /usr/bin/g++-13 \
9+ --slave /usr/bin/gcov gcov /usr/bin/gcov-13
410
511# install rust
612RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
You can’t perform that action at this time.
0 commit comments