Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/docker_clojure/core.clj
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
(def build-tools
{"lein" "2.9.1"
"boot" "2.8.3"
"tools-deps" "1.10.1.483"})
"tools-deps" "1.10.1.502"})

(def exclusions ; don't build these for whatever reason(s)
#{{:jdk-version 8
Expand Down
4 changes: 2 additions & 2 deletions src/docker_clojure/dockerfile/tools_deps.clj
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

(def distro-deps
{"slim-buster" {:build #{"wget" "curl"}
:runtime #{"rlwrap"}}
:runtime #{"rlwrap" "make"}}
"alpine" {:build #{"curl"}
:runtime #{"bash"}}})
:runtime #{"bash" "make"}}})

(defn install-deps [{:keys [distro]}]
(case distro
Expand Down
4 changes: 2 additions & 2 deletions target/openjdk-11-slim-buster/tools-deps/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM openjdk:11-slim-buster

ENV CLOJURE_VERSION=1.10.1.483
ENV CLOJURE_VERSION=1.10.1.502

WORKDIR /tmp

RUN \
apt-get update && \
apt-get install -y curl rlwrap wget && \
apt-get install -y curl make rlwrap wget && \
rm -rf /var/lib/apt/lists/* && \
wget https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh && \
chmod +x linux-install-$CLOJURE_VERSION.sh && \
Expand Down
2 changes: 1 addition & 1 deletion target/openjdk-11-stretch/tools-deps/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM openjdk:11-stretch

ENV CLOJURE_VERSION=1.10.1.483
ENV CLOJURE_VERSION=1.10.1.502

WORKDIR /tmp

Expand Down
2 changes: 1 addition & 1 deletion target/openjdk-13-buster/tools-deps/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM openjdk:13-buster

ENV CLOJURE_VERSION=1.10.1.483
ENV CLOJURE_VERSION=1.10.1.502

WORKDIR /tmp

Expand Down
4 changes: 2 additions & 2 deletions target/openjdk-13-slim-buster/tools-deps/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM openjdk:13-slim-buster

ENV CLOJURE_VERSION=1.10.1.483
ENV CLOJURE_VERSION=1.10.1.502

WORKDIR /tmp

RUN \
apt-get update && \
apt-get install -y curl rlwrap wget && \
apt-get install -y curl make rlwrap wget && \
rm -rf /var/lib/apt/lists/* && \
wget https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh && \
chmod +x linux-install-$CLOJURE_VERSION.sh && \
Expand Down
4 changes: 2 additions & 2 deletions target/openjdk-14-alpine/tools-deps/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM openjdk:14-alpine

ENV CLOJURE_VERSION=1.10.1.483
ENV CLOJURE_VERSION=1.10.1.502

WORKDIR /tmp

RUN \
apk add --update --no-cache curl bash && \
apk add --update --no-cache curl bash make && \
wget https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh && \
chmod +x linux-install-$CLOJURE_VERSION.sh && \
./linux-install-$CLOJURE_VERSION.sh && \
Expand Down
2 changes: 1 addition & 1 deletion target/openjdk-14-buster/tools-deps/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM openjdk:14-buster

ENV CLOJURE_VERSION=1.10.1.483
ENV CLOJURE_VERSION=1.10.1.502

WORKDIR /tmp

Expand Down
4 changes: 2 additions & 2 deletions target/openjdk-14-slim-buster/tools-deps/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM openjdk:14-slim-buster

ENV CLOJURE_VERSION=1.10.1.483
ENV CLOJURE_VERSION=1.10.1.502

WORKDIR /tmp

RUN \
apt-get update && \
apt-get install -y curl rlwrap wget && \
apt-get install -y curl make rlwrap wget && \
rm -rf /var/lib/apt/lists/* && \
wget https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh && \
chmod +x linux-install-$CLOJURE_VERSION.sh && \
Expand Down
4 changes: 2 additions & 2 deletions target/openjdk-8-slim-buster/tools-deps/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM openjdk:8-slim-buster

ENV CLOJURE_VERSION=1.10.1.483
ENV CLOJURE_VERSION=1.10.1.502

WORKDIR /tmp

RUN \
apt-get update && \
apt-get install -y curl rlwrap wget && \
apt-get install -y curl make rlwrap wget && \
rm -rf /var/lib/apt/lists/* && \
wget https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh && \
chmod +x linux-install-$CLOJURE_VERSION.sh && \
Expand Down
2 changes: 1 addition & 1 deletion target/openjdk-8-stretch/tools-deps/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM openjdk:8-stretch

ENV CLOJURE_VERSION=1.10.1.483
ENV CLOJURE_VERSION=1.10.1.502

WORKDIR /tmp

Expand Down