This is an automated email from the ASF dual-hosted git repository.
engelen pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pekko-samples.git
The following commit(s) were added to refs/heads/main by this push:
new f97faf9 fix: specify Eclipse Temurin 21 as base docker image (#145)
f97faf9 is described below
commit f97faf903b2488d91562657cef16807e2aa0c246
Author: Arnout Engelen <[email protected]>
AuthorDate: Tue Nov 25 09:55:39 2025 +0100
fix: specify Eclipse Temurin 21 as base docker image (#145)
---
.scalafmt.conf | 1 +
pekko-sample-grpc-kubernetes-scala/build.sbt | 5 ++++-
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/.scalafmt.conf b/.scalafmt.conf
index 60f647d..dc2a5c8 100644
--- a/.scalafmt.conf
+++ b/.scalafmt.conf
@@ -67,6 +67,7 @@ rewrite.neverInfix.excludeFilters = [
theSameElementsAs
theSameElementsInOrderAs
]
+rewrite.trailingCommas.style = keep
rewriteTokens = {
"⇒": "=>"
"→": "->"
diff --git a/pekko-sample-grpc-kubernetes-scala/build.sbt
b/pekko-sample-grpc-kubernetes-scala/build.sbt
index 6c93db0..4361f9a 100644
--- a/pekko-sample-grpc-kubernetes-scala/build.sbt
+++ b/pekko-sample-grpc-kubernetes-scala/build.sbt
@@ -24,13 +24,16 @@ lazy val httpToGrpc = (project in file("http-to-grpc"))
"org.apache.pekko" %% "pekko-http-spray-json" % pekkoHttpVersion,
"org.apache.pekko" %% "pekko-discovery-kubernetes-api" %
pekkoManagementVersion,
"ch.qos.logback" % "logback-classic" % "1.3.15"),
- dockerExposedPorts := Seq(8080))
+ dockerExposedPorts := Seq(8080),
+ dockerBaseImage := "eclipse-temurin:21",
+ )
// gRPC back end that echoes back messages
lazy val grpcService = (project in file("grpc-service"))
.enablePlugins(PekkoGrpcPlugin, DockerPlugin, JavaAppPackaging)
.settings(
dockerExposedPorts := Seq(8080),
+ dockerBaseImage := "eclipse-temurin:21",
libraryDependencies ++= Seq(
"org.apache.pekko" %% "pekko-actor" % pekkoVersion,
"org.apache.pekko" %% "pekko-actor-typed" % pekkoVersion,
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]