From f89466c2b9d28c5029de11ecd442329caf0f5b70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Zu=CC=88hlke?= Date: Fri, 8 Nov 2024 22:29:17 +0100 Subject: [PATCH] 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. --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 887ee1709e..8db778a817 100644 --- a/build.sbt +++ b/build.sbt @@ -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"