Skip to content

Commit c3c7985

Browse files
authored
Merge pull request #253 from Quantisan/fix/rlwrap-in-alpine-variants
Install rlwrap in alpine variants
2 parents 683cb20 + 40ca13c commit c3c7985

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/docker_clojure/dockerfile/tools_deps.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
;; but upstream includes it so we don't want to uninstall it
1818
:runtime #{"rlwrap" "make" "git" "curl"}}
1919
:alpine {:build #{"curl"}
20-
:runtime #{"bash" "make" "git"}}})
20+
:runtime #{"bash" "make" "git" "rlwrap"}}})
2121

2222
(def install-deps (partial install-distro-deps distro-deps))
2323

target/eclipse-temurin-11-jdk-alpine/tools-deps/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ENV CLOJURE_VERSION=1.12.0.1530
55
WORKDIR /tmp
66

77
RUN \
8-
apk add --no-cache curl bash make git && \
8+
apk add --no-cache curl bash make git rlwrap && \
99
curl -fsSLO https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh && \
1010
sha256sum linux-install-$CLOJURE_VERSION.sh && \
1111
echo "2a113e3a4f1005e05f4d6a6dee24ca317b0115cdd7e6ca6155a76f5ffa5ba35b *linux-install-$CLOJURE_VERSION.sh" | sha256sum -c - && \

target/eclipse-temurin-17-jdk-alpine/tools-deps/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ENV CLOJURE_VERSION=1.12.0.1530
55
WORKDIR /tmp
66

77
RUN \
8-
apk add --no-cache curl bash make git && \
8+
apk add --no-cache curl bash make git rlwrap && \
99
curl -fsSLO https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh && \
1010
sha256sum linux-install-$CLOJURE_VERSION.sh && \
1111
echo "2a113e3a4f1005e05f4d6a6dee24ca317b0115cdd7e6ca6155a76f5ffa5ba35b *linux-install-$CLOJURE_VERSION.sh" | sha256sum -c - && \

target/eclipse-temurin-21-jdk-alpine/tools-deps/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ENV CLOJURE_VERSION=1.12.0.1530
55
WORKDIR /tmp
66

77
RUN \
8-
apk add --no-cache curl bash make git && \
8+
apk add --no-cache curl bash make git rlwrap && \
99
curl -fsSLO https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh && \
1010
sha256sum linux-install-$CLOJURE_VERSION.sh && \
1111
echo "2a113e3a4f1005e05f4d6a6dee24ca317b0115cdd7e6ca6155a76f5ffa5ba35b *linux-install-$CLOJURE_VERSION.sh" | sha256sum -c - && \

target/eclipse-temurin-24-jdk-alpine/tools-deps/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ENV CLOJURE_VERSION=1.12.0.1530
55
WORKDIR /tmp
66

77
RUN \
8-
apk add --no-cache curl bash make git && \
8+
apk add --no-cache curl bash make git rlwrap && \
99
curl -fsSLO https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh && \
1010
sha256sum linux-install-$CLOJURE_VERSION.sh && \
1111
echo "2a113e3a4f1005e05f4d6a6dee24ca317b0115cdd7e6ca6155a76f5ffa5ba35b *linux-install-$CLOJURE_VERSION.sh" | sha256sum -c - && \

target/eclipse-temurin-8-jdk-alpine/tools-deps/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ENV CLOJURE_VERSION=1.12.0.1530
55
WORKDIR /tmp
66

77
RUN \
8-
apk add --no-cache curl bash make git && \
8+
apk add --no-cache curl bash make git rlwrap && \
99
curl -fsSLO https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh && \
1010
sha256sum linux-install-$CLOJURE_VERSION.sh && \
1111
echo "2a113e3a4f1005e05f4d6a6dee24ca317b0115cdd7e6ca6155a76f5ffa5ba35b *linux-install-$CLOJURE_VERSION.sh" | sha256sum -c - && \

0 commit comments

Comments
 (0)