fix wget
All checks were successful
/ build (push) Successful in 13m14s

This commit is contained in:
Adrien Beaudouin 2025-06-07 22:12:03 +02:00
parent edf2c1acc6
commit 17f63a6757

View File

@ -21,7 +21,7 @@ ARG VERSION=4.4.1
WORKDIR /source WORKDIR /source
RUN wget https://ftp.gnu.org/gnu/make/make-${VERSION}.tar.gz -O make.tar.gz ADD https://ftp.gnu.org/gnu/make/make-${VERSION}.tar.gz make.tar.gz
RUN tar -xzf make.tar.gz --strip-components=1 && \ RUN tar -xzf make.tar.gz --strip-components=1 && \
mkdir build && \ mkdir build && \
@ -39,7 +39,7 @@ ARG VERSION=2.44
WORKDIR /source WORKDIR /source
RUN wget https://ftp.gnu.org/gnu/binutils/binutils-${VERSION}.tar.xz -O binutils.tar.xz ADD https://ftp.gnu.org/gnu/binutils/binutils-${VERSION}.tar.xz binutils.tar.xz
RUN tar -xJf binutils.tar.xz --strip-components=1 && \ RUN tar -xJf binutils.tar.xz --strip-components=1 && \
./configure \ ./configure \
@ -66,10 +66,10 @@ ARG MPC_VERSION=1.3.1
WORKDIR /source WORKDIR /source
RUN wget https://ftp.gnu.org/gnu/gcc/gcc-${GCC_VERSION}/gcc-${GCC_VERSION}.tar.xz -O gcc.tar.xz ADD https://ftp.gnu.org/gnu/gcc/gcc-${GCC_VERSION}/gcc-${GCC_VERSION}.tar.xz gcc.tar.xz
RUN wget https://ftp.gnu.org/gnu/mpfr/mpfr-${MPFR_VERSION}.tar.xz -O mpfr.tar.xz ADD https://ftp.gnu.org/gnu/mpfr/mpfr-${MPFR_VERSION}.tar.xz mpfr.tar.xz
RUN wget https://ftp.gnu.org/gnu/gmp/gmp-${GMP_VERSION}.tar.xz -O gmp.tar.xz ADD https://ftp.gnu.org/gnu/gmp/gmp-${GMP_VERSION}.tar.xz gmp.tar.xz
RUN wget https://ftp.gnu.org/gnu/mpc/mpc-${MPC_VERSION}.tar.gz -O mpc.tar.gz ADD https://ftp.gnu.org/gnu/mpc/mpc-${MPC_VERSION}.tar.gz mpc.tar.gz
RUN mkdir mpfr && \ RUN mkdir mpfr && \
tar -xJf mpfr.tar.xz --strip-components=1 -C mpfr && \ tar -xJf mpfr.tar.xz --strip-components=1 -C mpfr && \
@ -123,7 +123,7 @@ ARG VERSION=6.12.21
WORKDIR /source WORKDIR /source
RUN wget https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-${VERSION}.tar.xz -O linux.tar.xz ADD https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-${VERSION}.tar.xz linux.tar.xz
RUN tar -xJf linux.tar.xz --strip-components=1 RUN tar -xJf linux.tar.xz --strip-components=1
@ -145,7 +145,7 @@ ARG VERSION=1.2.5
WORKDIR /source WORKDIR /source
RUN wget https://www.musl-libc.org/releases/musl-${VERSION}.tar.gz -O musl.tar.gz ADD https://www.musl-libc.org/releases/musl-${VERSION}.tar.gz musl.tar.gz
RUN tar -xzf musl.tar.gz --strip-components=1 && \ RUN tar -xzf musl.tar.gz --strip-components=1 && \
mkdir build && \ mkdir build && \
@ -173,7 +173,7 @@ USER root
WORKDIR /source WORKDIR /source
RUN wget https://dl.google.com/go/go${VERSION}.src.tar.gz -O go.src.tar.gz ADD https://dl.google.com/go/go${VERSION}.src.tar.gz go.src.tar.gz
RUN tar -xzf go.src.tar.gz --strip-components=1 && \ RUN tar -xzf go.src.tar.gz --strip-components=1 && \
rm go.src.tar.gz rm go.src.tar.gz