init
All checks were successful
/ build (push) Successful in 12m56s

This commit is contained in:
Adrien Beaudouin 2025-06-06 18:59:36 +02:00
parent b307ba4822
commit 733aef8c10

View File

@ -61,10 +61,10 @@ ARG MPC_VERSION=1.3.1
WORKDIR /source
RUN wget https://ftp.gnu.org/gnu/gcc/gcc-${GCC_VERSION}/gcc-${GCC_VERSION}.tar.xz -O gcc.tar.gz
RUN wget https://ftp.gnu.org/gnu/mpfr/mpfr-${MPFR_VERSION}.tar.xz -O mpfr.tar.gz
RUN wget https://ftp.gnu.org/gnu/gmp/gmp-${GMP_VERSION}.tar.xz -O gmp.tar.gz
RUN wget https://ftp.gnu.org/gnu/mpc/mpc-${MPC_VERSION}.tar.xz -O mpc.tar.gz
RUN wget https://ftp.gnu.org/gnu/gcc/gcc-${GCC_VERSION}/gcc-${GCC_VERSION}.tar.xz -O gcc.tar.xz
RUN wget https://ftp.gnu.org/gnu/mpfr/mpfr-${MPFR_VERSION}.tar.xz -O mpfr.tar.xz
RUN wget https://ftp.gnu.org/gnu/gmp/gmp-${GMP_VERSION}.tar.xz -O gmp.tar.xz
RUN wget https://ftp.gnu.org/gnu/mpc/mpc-${MPC_VERSION}.tar.gz -O mpc.tar.gz
RUN mkdir mpfr && \
tar -xJf mpfr.tar.xz --strip-components=1 -C mpfr && \