Skip to content

Commit d77b451

Browse files
committed
Upgrade Seqslab base image to 1.6.5.0 and Java version to 17
1 parent a024710 commit d77b451

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG base_image=ghcr.io/atgenomix/runtime/base:1.6.4.0-ubuntu22.04
1+
ARG base_image=ghcr.io/atgenomix/runtime/base:1.6.5.0-ubuntu22.04
22
FROM --platform=$BUILDPLATFORM sbtscala/scala-sbt:eclipse-temurin-17.0.14_7_1.10.10_2.12.20 AS build
33
ARG base_image
44

@@ -16,7 +16,7 @@ RUN --mount=type=secret,id=GITHUB_TOKEN,env=GITHUB_TOKEN \
1616

1717
FROM ${base_image}
1818
ARG base_image
19-
ARG version=2.0.0_sl
19+
ARG version=2.0.1_sl
2020

2121
# metadata
2222
LABEL \

build.sbt

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name := "Slacken"
22

3-
version := "2.0.0_sl"
3+
version := "2.0.1_sl"
44

55
lazy val scala212 = "2.12.20"
66

@@ -23,11 +23,9 @@ lazy val root = (project in file(".")).
2323

2424
val sparkVersion = "3.5.0"
2525

26-
//For backwards compatibility with Java 17, when compiling on a newer JDK, the options below are needed.
27-
//Also applies to javacOptions below.
28-
scalacOptions ++= Seq("--feature", "-release", "8")
26+
scalacOptions ++= Seq("--feature", "-release", "17")
2927

30-
javacOptions ++= Seq("--release=8")
28+
javacOptions ++= Seq("--release=17")
3129

3230
resolvers += "Spark Packages Repo" at "https://dl.bintray.com/spark-packages/maven"
3331

0 commit comments

Comments
 (0)