Skip to content

Commit f416f52

Browse files
committed
Use OpenJDK 11
1 parent b82bd95 commit f416f52

5 files changed

+5
-5
lines changed

Dockerfile-alpine

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ENV LEIN_VERSION=2.9.1 \
1212
CLOJURE_VER=1.10.3.933 \
1313
CLOJURESCRIPT_VER=1.10.866
1414

15-
RUN apk add --update --no-cache openjdk8 openssl gnupg bash
15+
RUN apk add --update --no-cache openjdk11 openssl gnupg bash
1616

1717
# Download the whole repo as an archive
1818
RUN set -x; mkdir -p $LEIN_INSTALL \

Dockerfile-lein

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ RUN set -ex; \
3232
mkdir -p /usr/share/java; \
3333
mv leiningen-$LEIN_VERSION-standalone.zip /usr/share/java/leiningen-$LEIN_VERSION-standalone.jar; \
3434
apt-get update; \
35-
apt-get -q -y install openjdk-8-jdk; \
35+
apt-get -q -y install openjdk-11-jdk; \
3636
curl -s https://download.clojure.org/install/linux-install-$CLOJURE_VER.sh | bash
3737

3838
# Install latest Clojure and ClojureScript so users don't have to download it every time

Dockerfile-lein-onbuild

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ RUN set -ex; \
3232
mkdir -p /usr/share/java; \
3333
mv leiningen-$LEIN_VERSION-standalone.zip /usr/share/java/leiningen-$LEIN_VERSION-standalone.jar; \
3434
apt-get update; \
35-
apt-get -q -y install openjdk-8-jdk; \
35+
apt-get -q -y install openjdk-11-jdk; \
3636
curl -s https://download.clojure.org/install/linux-install-$CLOJURE_VER.sh | bash
3737

3838
# Install latest Clojure and ClojureScript so users don't have to download it every time

Dockerfile-shadow-cljs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ WORKDIR /tmp
55
ENV CLOJURE_VER=1.10.3.933
66

77
RUN apt-get update \
8-
&& apt-get -q -y install openjdk-8-jdk curl \
8+
&& apt-get -q -y install openjdk-11-jdk curl \
99
&& npm install -g shadow-cljs \
1010
&& curl -s https://download.clojure.org/install/linux-install-$CLOJURE_VER.sh | bash

Dockerfile-shadow-cljs-alpine

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ MAINTAINER Andrew Phillips <[email protected]>
44
WORKDIR /tmp
55
ENV CLOJURE_VER=1.10.3.933
66

7-
RUN apk add --update --no-cache openjdk8 openssl bash curl \
7+
RUN apk add --update --no-cache openjdk11 openssl bash curl \
88
&& npm install -g shadow-cljs \
99
&& curl -s https://download.clojure.org/install/linux-install-$CLOJURE_VER.sh | bash

0 commit comments

Comments
 (0)