Skip to content

Commit

Permalink
Revert the base docker image back to JDK 11
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
mzuehlke committed Nov 8, 2024
1 parent 5301c19 commit f89466c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ lazy val metadataSettings = Def.settings(

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

0 comments on commit f89466c

Please sign in to comment.