File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -450,7 +450,7 @@ In case of problems with file mounting on Windows place the `application.ini` an
450450Another option is to use custom ` Dockerfile ` :
451451
452452```
453- FROM openjdk:8-jre-alpine
453+ FROM eclipse-temurin:11-jdk-noble
454454
455455ARG ELASTICMQ_VERSION
456456ENV ELASTICMQ_VERSION ${ELASTICMQ_VERSION}
@@ -546,7 +546,7 @@ Publishing Docker image for two different platforms: `amd64` and `arm64` is poss
546546Docker Buildx is included in Docker Desktop and Docker Linux packages when installed using the DEB or RPM packages. ` build.sbt ` has following setup:
547547
548548* ` dockerBuildxSettings ` creates Docker Buildx instance
549- * Docker base image is ` openjdk :11-jdk-stretch ` which supports multi-arch images
549+ * Docker base image is ` eclipse-temurin :11-jdk-noble ` which supports multi-arch images
550550* ` dockerBuildCommand ` is extended with operator ` buildx `
551551* ` dockerBuildOptions ` has two additional parameters: ` --platform=linux/arm64,linux/amd64 ` and ` --push `
552552
Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ import scoverage.ScoverageKeys.*
99import scala .sys .process .Process
1010
1111val v2_12 = " 2.12.20"
12- val v2_13 = " 2.13.16 "
13- val v3 = " 3.3.6 "
12+ val v2_13 = " 2.13.18 "
13+ val v3 = " 3.3.7 "
1414
1515lazy val resolvedScalaVersion =
1616 sys.env.get(" SCALA_MAJOR_VERSION" ) match {
@@ -254,7 +254,7 @@ lazy val server: Project = (project in file("server"))
254254 },
255255 // docker
256256 dockerExposedPorts := Seq (9324 , 9325 ),
257- dockerBaseImage := " openjdk :11-jdk-stretch " ,
257+ dockerBaseImage := " eclipse-temurin :11-jdk-noble " ,
258258 Docker / packageName := " elasticmq" ,
259259 dockerUsername := Some (" softwaremill" ),
260260 dockerUpdateLatest := {
You can’t perform that action at this time.
0 commit comments