You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by tl...@apache.org on 2022/09/07 09:05:32 UTC

[ignite] branch master updated: IGNITE-17108 Update Docker deliveries (#10070)

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

tledkov 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 7b7a71ccc24 IGNITE-17108 Update Docker deliveries (#10070)
7b7a71ccc24 is described below

commit 7b7a71ccc24f0629c1e503d3b9171f982ee623c0
Author: Peter Ivanov <mr...@gmail.com>
AuthorDate: Wed Sep 7 12:05:23 2022 +0300

    IGNITE-17108 Update Docker deliveries (#10070)
---
 deliveries/docker/apache-ignite/x86_64/Dockerfile | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/deliveries/docker/apache-ignite/x86_64/Dockerfile b/deliveries/docker/apache-ignite/x86_64/Dockerfile
index 7eb440d6b09..fd302f191a5 100644
--- a/deliveries/docker/apache-ignite/x86_64/Dockerfile
+++ b/deliveries/docker/apache-ignite/x86_64/Dockerfile
@@ -15,8 +15,9 @@
 # limitations under the License.
 #
 
-# Start from Java 8 based on Alpine Linux image (~5Mb)
-FROM openjdk:8-jre-alpine
+# Start from Java 8 based on Alpine Linux image
+ARG JDK_VERSION=8
+FROM eclipse-temurin:${JDK_VERSION}-jre-alpine
 
 # Settings
 ENV IGNITE_HOME /opt/ignite/apache-ignite
@@ -46,3 +47,4 @@ CMD $IGNITE_HOME/run.sh
 
 # Container port exposure
 EXPOSE 11211 47100 47500 49112 10800 8080
+