From 961fc05af643fb316272780d0f6c7fc9fcfb7a5e Mon Sep 17 00:00:00 2001 From: Adrien Beaudouin <3679080+adr1enbe4udou1n@users.noreply.github.com> Date: Fri, 6 Jun 2025 18:45:24 +0200 Subject: [PATCH] init --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d35044f..99c5532 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 && \