You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by vv...@apache.org on 2022/03/10 15:17:44 UTC

[ignite] branch master updated: IGNITE-16481 Docker image not available for apache ignite(v2.12.0) on s390x architecture (#9878)

This is an automated email from the ASF dual-hosted git repository.

vveider pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/master by this push:
     new f686e28  IGNITE-16481 Docker image not available for apache ignite(v2.12.0) on s390x architecture (#9878)
f686e28 is described below

commit f686e2849734c761bc0137c5d7ec30aa6a339dd6
Author: Peter Ivanov <mr...@gmail.com>
AuthorDate: Thu Mar 10 18:17:21 2022 +0300

    IGNITE-16481 Docker image not available for apache ignite(v2.12.0) on s390x architecture (#9878)
---
 deliveries/docker/apache-ignite/s390x/Dockerfile | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/deliveries/docker/apache-ignite/s390x/Dockerfile b/deliveries/docker/apache-ignite/s390x/Dockerfile
index 34314d8..8b2bb77 100644
--- a/deliveries/docker/apache-ignite/s390x/Dockerfile
+++ b/deliveries/docker/apache-ignite/s390x/Dockerfile
@@ -17,16 +17,16 @@
 
 
 # Base Image
-FROM  s390x/ubuntu:18.04
+FROM  s390x/ubuntu:20.04
 
 # Dockerfile variables
 ARG IGNITE_VER
 
 # Set Environment Variables
-ENV JAVA_HOME="/opt/jdk-11.0.7+10"
+ENV JAVA_HOME="/opt/jdk-11.0.14.1+1"
 ENV IGNITE_HOME="/opt/apache-ignite-${IGNITE_VER}-bin"
 ENV PATH="${JAVA_HOME}/bin:/opt/apache-ignite-${IGNITE_VER}-bin/bin:${PATH}"
-ENV JDK_FILE="OpenJDK11U-jdk_s390x_linux_openj9_11.0.7_10_openj9-0.20.0.tar.gz"
+ENV JDK_FILE="ibm-semeru-open-jdk_s390x_linux_11.0.14.1_1_openj9-0.30.1.tar.gz"
 
 # The Author
 LABEL maintainer="LoZ Open Source Ecosystem (https://www.ibm.com/community/z/usergroups/opensource)"
@@ -44,8 +44,8 @@ RUN apt-get update && \
     apt-get -y clean autoremove && \
     rm -rf /var/lib/apt/lists/*
 
-# Download AdoptOpenJDK 8
-RUN wget https://github.com/AdoptOpenJDK/openjdk11-binaries/releases/download/jdk-11.0.7%2B10_openj9-0.20.0/${JDK_FILE} && \
+# Download JDK 11
+RUN wget https://github.com/ibmruntimes/semeru11-binaries/releases/download/jdk-11.0.14.1%2B1_openj9-0.30.1/${JDK_FILE} && \
     tar xvf ${JDK_FILE} && \
     rm -rf ${JDK_FILE}