init
Some checks failed
/ build (push) Failing after 2m15s

This commit is contained in:
Adrien Beaudouin 2025-06-06 18:45:24 +02:00
parent 61104cd8e2
commit 961fc05af6

View File

@ -12,10 +12,11 @@ COPY --from=musl / /
COPY --from=busybox / /
FROM bootstrap-c-toolchain AS build-make
ARG VERSION=4.4.1
WORKDIR /source
RUN wget https://ftp.gnu.org/gnu/make/make-4.4.1.tar.gz -O make.tar.gz
RUN wget https://ftp.gnu.org/gnu/make/make-${VERSION}.tar.gz -O make.tar.gz
RUN tar -xzf make.tar.gz --strip-components=1 && \
mkdir build && \