From 06f97cb67ad75cf8944f57b51e0a7653957a805a Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Thu, 9 Jul 2026 21:32:52 -0400 Subject: [PATCH] Use ADD command for pulling git repos. This is to fix buildkit caching. --- docker/organic_test/Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docker/organic_test/Dockerfile b/docker/organic_test/Dockerfile index 1a4c1f4..48e3b0b 100644 --- a/docker/organic_test/Dockerfile +++ b/docker/organic_test/Dockerfile @@ -17,9 +17,7 @@ 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 +ADD https://code.fizz.buzz/mirror/emacs.git#emacs-29.1 /root/emacs WORKDIR /root/emacs RUN mkdir /root/dist RUN ./autogen.sh