This is an automated email from the ASF dual-hosted git repository.
vterentev pushed a commit to branch playground-openjdk21
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/playground-openjdk21 by this
push:
new fd36e51ea45 Use eclipse-temurin:11 for scio playground
fd36e51ea45 is described below
commit fd36e51ea452b19fc3a8c5c7934e08e1c5e9aebf
Author: Vitaly Terentyev <[email protected]>
AuthorDate: Tue Nov 4 22:50:22 2025 +0400
Use eclipse-temurin:11 for scio playground
---
playground/backend/containers/scio/Dockerfile | 2 +-
playground/backend/containers/scio/build.gradle | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/playground/backend/containers/scio/Dockerfile
b/playground/backend/containers/scio/Dockerfile
index e5cadaf2ade..817f6cb8824 100644
--- a/playground/backend/containers/scio/Dockerfile
+++ b/playground/backend/containers/scio/Dockerfile
@@ -15,7 +15,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
###############################################################################
-ARG BASE_IMAGE=openjdk:21
+ARG BASE_IMAGE=eclipse-temurin:11
FROM golang:1-bullseye AS build
ARG GIT_COMMIT="<unknown>"
ARG GIT_TIMESTAMP="0"
diff --git a/playground/backend/containers/scio/build.gradle
b/playground/backend/containers/scio/build.gradle
index b86c92579a2..66319c8f8cd 100644
--- a/playground/backend/containers/scio/build.gradle
+++ b/playground/backend/containers/scio/build.gradle
@@ -71,7 +71,7 @@ docker {
buildArgs(
['BASE_IMAGE' : project.rootProject.hasProperty(["base-image"]) ?
project.rootProject["base-image"] :
- "openjdk:21",
+ "eclipse-temurin:11",
'GIT_COMMIT' : getGitCommitHash(),
'GIT_TIMESTAMP': getGitCommitTimestamp()])
}