From ad9b7d8f06ba8019b6c089701ea1e02b37934fe1 Mon Sep 17 00:00:00 2001 From: sergiorussia <22471371+sergiorussia@users.noreply.github.com> Date: Mon, 15 Jun 2020 09:27:33 +0300 Subject: [PATCH] sbt 1.3.12, scala 2.13.2 --- image-amazon/Dockerfile | 4 ++-- image-debian/Dockerfile | 4 ++-- image-openjdk/Dockerfile | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/image-amazon/Dockerfile b/image-amazon/Dockerfile index eb7a829..217f664 100644 --- a/image-amazon/Dockerfile +++ b/image-amazon/Dockerfile @@ -2,7 +2,7 @@ FROM amazoncorretto:8u222 # The following is inspired by https://github.com/hseeberger/scala-sbt/blob/master/oracle/Dockerfile -ENV SBT_VERSION 1.3.10 +ENV SBT_VERSION 1.3.12 RUN \ curl -L -o /root/sbt-${SBT_VERSION}.rpm https://bintray.com/sbt/rpm/download_file?file_path=sbt-${SBT_VERSION}.rpm && \ yum install -y /root/sbt-${SBT_VERSION}.rpm && \ @@ -10,7 +10,7 @@ RUN \ rm /root/sbt-${SBT_VERSION}.rpm # Prepare sbt and Scala, verify compilation including JavaFX classes -ENV SCALA_VERSION 2.13.1 +ENV SCALA_VERSION 2.13.2 WORKDIR /root/dummy RUN \ mkdir -p project && \ diff --git a/image-debian/Dockerfile b/image-debian/Dockerfile index b544fc2..025687c 100644 --- a/image-debian/Dockerfile +++ b/image-debian/Dockerfile @@ -5,14 +5,14 @@ FROM buildpack-deps:stretch-scm RUN apt-get update && apt-get install -y --no-install-recommends openjdk-8-jdk openjfx && rm -rf /var/lib/apt/lists/* # The following is inspired by https://github.com/hseeberger/scala-sbt/blob/master/debian/Dockerfile -ENV SBT_VERSION 1.3.10 +ENV SBT_VERSION 1.3.12 RUN \ curl -L -o /root/sbt-${SBT_VERSION}.deb https://dl.bintray.com/sbt/debian/sbt-${SBT_VERSION}.deb && \ apt-get install -y /root/sbt-${SBT_VERSION}.deb && \ rm /root/sbt-${SBT_VERSION}.deb # Prepare sbt and Scala, verify compilation including JavaFX classes -ENV SCALA_VERSION 2.13.1 +ENV SCALA_VERSION 2.13.2 WORKDIR /root/dummy RUN \ mkdir -p project && \ diff --git a/image-openjdk/Dockerfile b/image-openjdk/Dockerfile index ee9b457..2c6a5e8 100644 --- a/image-openjdk/Dockerfile +++ b/image-openjdk/Dockerfile @@ -5,7 +5,7 @@ FROM openjdk:8u222-jdk-stretch RUN apt-get update && apt-get install -y --no-install-recommends openjfx && rm -rf /var/lib/apt/lists/* # The following is inspired by https://github.com/hseeberger/scala-sbt/blob/master/debian/Dockerfile -ENV SBT_VERSION 1.3.10 +ENV SBT_VERSION 1.3.12 RUN \ curl -L -o /root/sbt-${SBT_VERSION}.deb https://dl.bintray.com/sbt/debian/sbt-${SBT_VERSION}.deb && \ apt-get install -y /root/sbt-${SBT_VERSION}.deb && \ @@ -17,7 +17,7 @@ RUN \ ln -s -t "$JAVA_HOME/jre/lib/ext/" $(find /usr/share/java/openjfx/jre/lib/ext/ -maxdepth 1 -type f) # Prepare sbt and Scala, verify compilation including JavaFX classes -ENV SCALA_VERSION 2.13.1 +ENV SCALA_VERSION 2.13.2 WORKDIR /root/dummy RUN \ mkdir -p project && \