From 1094c7d8e60a3e5c835f2ecb1251b41ddada66b8 Mon Sep 17 00:00:00 2001 From: Alex Kelly Date: Sat, 14 Mar 2026 11:53:59 -0400 Subject: [PATCH] update clojure line to latest --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5b389ff..45ee636 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,8 @@ RUN apk add --no-cache \ openjdk21-jdk \ git \ curl -RUN curl -O https://download.clojure.org/install/linux-install-1.11.1.1435.sh && chmod +x linux-install-1.11.1.1435.sh && ./linux-install-1.11.1.1435.sh +#RUN curl -O https://download.clojure.org/install/linux-install-1.11.1.1435.sh && chmod +x linux-install-1.11.1.1435.sh && ./linux-install-1.11.1.1435.sh +RUN curl -LO https://github.com/clojure/brew-install/releases/latest/download/linux-install.sh && chmod +x linux-install.sh && ./linux-install.sh RUN git clone https://github.com/logseq/logseq.git && cd logseq && yarn install #build db-sync RUN cd logseq/deps/db-sync && yarn install && yarn build:node-adapter && yarn install --production