diff --git a/docker/organic_test/Dockerfile b/docker/organic_test/Dockerfile index 1a4c1f4..814ffe0 100644 --- a/docker/organic_test/Dockerfile +++ b/docker/organic_test/Dockerfile @@ -17,15 +17,17 @@ RUN apk add --no-cache build-base musl-dev git autoconf make texinfo gnutls-dev FROM build AS build-emacs -ARG EMACS_VERSION ARG EMACS_REPO -RUN git clone --depth 1 --branch $EMACS_VERSION $EMACS_REPO /root/emacs +ARG EMACS_VERSION +ADD "$EMACS_REPO#$EMACS_VERSION" /root/emacs WORKDIR /root/emacs -RUN mkdir /root/dist -RUN ./autogen.sh -RUN ./configure --prefix /usr --without-x --without-sound --with-native-compilation=aot -RUN make -RUN make DESTDIR="/root/dist" install +RUN <