From 8b09f3028cf71f482160dafe2573211a932c0583 Mon Sep 17 00:00:00 2001 From: sergiorussia <22471371+sergiorussia@users.noreply.github.com> Date: Wed, 18 Sep 2019 23:54:32 +0300 Subject: [PATCH] scala 2.13.1 --- image-amazon/Dockerfile | 4 +--- image-debian/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/image-amazon/Dockerfile b/image-amazon/Dockerfile index 09460ed..9b5bfdf 100644 --- a/image-amazon/Dockerfile +++ b/image-amazon/Dockerfile @@ -2,10 +2,8 @@ FROM amazoncorretto:8u222 # The following is inspired by https://github.com/hseeberger/scala-sbt/blob/master/oracle/Dockerfile -ENV SCALA_VERSION 2.13.0 +ENV SCALA_VERSION 2.13.1 ENV SBT_VERSION 1.3.0 - -# Install sbt 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 && \ diff --git a/image-debian/Dockerfile b/image-debian/Dockerfile index 919c366..fb996e7 100644 --- a/image-debian/Dockerfile +++ b/image-debian/Dockerfile @@ -5,7 +5,7 @@ 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 SCALA_VERSION 2.13.0 +ENV SCALA_VERSION 2.13.1 ENV SBT_VERSION 1.3.0 RUN \ curl -L -o /root/sbt-${SBT_VERSION}.deb https://dl.bintray.com/sbt/debian/sbt-${SBT_VERSION}.deb && \