Skip to content

Commit

Permalink
sbt 1.3.12, scala 2.13.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiorussia committed Jun 15, 2020
1 parent 2c710d2 commit ad9b7d8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions image-amazon/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
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 && \
yum clean all && \
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 && \
Expand Down
4 changes: 2 additions & 2 deletions image-debian/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand Down
4 changes: 2 additions & 2 deletions image-openjdk/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand All @@ -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 && \
Expand Down

0 comments on commit ad9b7d8

Please sign in to comment.