Skip to content

Commit f89466c

Browse files
committed
Revert the base docker image back to JDK 11
JDK 21 requires that sbt is of version 1.9.0 or greater. This poses problems to some projects. As the other changes to support a multi-platform docker image had flaws too, this change shouldn't be a problem.
1 parent 5301c19 commit f89466c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ lazy val metadataSettings = Def.settings(
345345

346346
lazy val dockerSettings = Def.settings(
347347
dockerBaseImage := Option(System.getenv("DOCKER_BASE_IMAGE"))
348-
.getOrElse("eclipse-temurin:21-alpine"),
348+
.getOrElse("eclipse-temurin:11-alpine"),
349349
dockerCommands ++= {
350350
val curl = "curl -fL --output"
351351
val binDir = "/usr/local/bin"

0 commit comments

Comments
 (0)