diff --git a/src/docker_clojure/dockerfile/tools_deps.clj b/src/docker_clojure/dockerfile/tools_deps.clj index f5105ce..0027c89 100644 --- a/src/docker_clojure/dockerfile/tools_deps.clj +++ b/src/docker_clojure/dockerfile/tools_deps.clj @@ -17,7 +17,7 @@ ;; but upstream includes it so we don't want to uninstall it :runtime #{"rlwrap" "make" "git" "curl"}} :alpine {:build #{"curl"} - :runtime #{"bash" "make" "git"}}}) + :runtime #{"bash" "make" "git" "rlwrap"}}}) (def install-deps (partial install-distro-deps distro-deps)) diff --git a/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile b/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile index a469d24..e58cc21 100644 --- a/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile +++ b/target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile @@ -5,7 +5,7 @@ ENV CLOJURE_VERSION=1.12.0.1530 WORKDIR /tmp RUN \ -apk add --no-cache curl bash make git && \ +apk add --no-cache curl bash make git rlwrap && \ curl -fsSLO https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh && \ sha256sum linux-install-$CLOJURE_VERSION.sh && \ echo "2a113e3a4f1005e05f4d6a6dee24ca317b0115cdd7e6ca6155a76f5ffa5ba35b *linux-install-$CLOJURE_VERSION.sh" | sha256sum -c - && \ diff --git a/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile b/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile index 204e77a..b0ff50e 100644 --- a/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile +++ b/target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile @@ -5,7 +5,7 @@ ENV CLOJURE_VERSION=1.12.0.1530 WORKDIR /tmp RUN \ -apk add --no-cache curl bash make git && \ +apk add --no-cache curl bash make git rlwrap && \ curl -fsSLO https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh && \ sha256sum linux-install-$CLOJURE_VERSION.sh && \ echo "2a113e3a4f1005e05f4d6a6dee24ca317b0115cdd7e6ca6155a76f5ffa5ba35b *linux-install-$CLOJURE_VERSION.sh" | sha256sum -c - && \ diff --git a/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile b/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile index 1276c2e..b3af3b6 100644 --- a/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile +++ b/target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile @@ -5,7 +5,7 @@ ENV CLOJURE_VERSION=1.12.0.1530 WORKDIR /tmp RUN \ -apk add --no-cache curl bash make git && \ +apk add --no-cache curl bash make git rlwrap && \ curl -fsSLO https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh && \ sha256sum linux-install-$CLOJURE_VERSION.sh && \ echo "2a113e3a4f1005e05f4d6a6dee24ca317b0115cdd7e6ca6155a76f5ffa5ba35b *linux-install-$CLOJURE_VERSION.sh" | sha256sum -c - && \ diff --git a/target/eclipse-temurin-24-jdk-alpine/tools-deps/Dockerfile b/target/eclipse-temurin-24-jdk-alpine/tools-deps/Dockerfile index a0e4ae0..853bcd8 100644 --- a/target/eclipse-temurin-24-jdk-alpine/tools-deps/Dockerfile +++ b/target/eclipse-temurin-24-jdk-alpine/tools-deps/Dockerfile @@ -5,7 +5,7 @@ ENV CLOJURE_VERSION=1.12.0.1530 WORKDIR /tmp RUN \ -apk add --no-cache curl bash make git && \ +apk add --no-cache curl bash make git rlwrap && \ curl -fsSLO https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh && \ sha256sum linux-install-$CLOJURE_VERSION.sh && \ echo "2a113e3a4f1005e05f4d6a6dee24ca317b0115cdd7e6ca6155a76f5ffa5ba35b *linux-install-$CLOJURE_VERSION.sh" | sha256sum -c - && \ diff --git a/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile b/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile index 51053f8..be8c7d2 100644 --- a/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile +++ b/target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile @@ -5,7 +5,7 @@ ENV CLOJURE_VERSION=1.12.0.1530 WORKDIR /tmp RUN \ -apk add --no-cache curl bash make git && \ +apk add --no-cache curl bash make git rlwrap && \ curl -fsSLO https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh && \ sha256sum linux-install-$CLOJURE_VERSION.sh && \ echo "2a113e3a4f1005e05f4d6a6dee24ca317b0115cdd7e6ca6155a76f5ffa5ba35b *linux-install-$CLOJURE_VERSION.sh" | sha256sum -c - && \