From 13e303c3479575d33d397babbc765efd86bfb6ac Mon Sep 17 00:00:00 2001
From: retropikzel <retropikzel@iki.fi>
Date: Fri, 18 Apr 2025 08:42:26 +0300
Subject: [PATCH] Making the build work

---
 Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Dockerfile b/Dockerfile
index 8a281cf..8043993 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -5,8 +5,8 @@ RUN wget https://bitbucket.org/ktakashi/sagittarius-scheme/downloads/sagittarius
 RUN cd sagittarius-0.9.12 && mkdir build && cd build && cmake -DCMAKE_INSTALL_PREFIX=/usr/local-other .. && make && make install
 
 FROM schemers/${COMPILE_R7RS}
-ARG COMPILE_R7RS=chibi
 RUN apt-get update && apt-get install -y make libffi8 libgc1 libssl3 libuv1
 COPY --from=build /usr/local-other/ /usr/local-other/
 ENV PATH=${PATH}:/usr/local-other/bin
+ARG COMPILE_R7RS=chibi
 ENV COMPILE_R7RS=${COMPILE_R7RS}