You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ra...@apache.org on 2019/11/22 12:07:39 UTC

[sling-org-apache-sling-committer-cli] branch master updated: SLING-8856 - jlink is not symlink-ed in the /bin folder any more

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

radu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-committer-cli.git


The following commit(s) were added to refs/heads/master by this push:
     new 935d2eb  SLING-8856 - jlink is not symlink-ed in the /bin folder any more
935d2eb is described below

commit 935d2ebfe3ea91c29b63c9090f9e49d3bf8af2bd
Author: Radu Cotescu <ra...@apache.org>
AuthorDate: Fri Nov 22 13:06:41 2019 +0100

    SLING-8856 - jlink is not symlink-ed in the /bin folder any more
    
    * used the full path to the jlink executable
---
 Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Dockerfile b/Dockerfile
index 48d4d4e..ea306fa 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -11,7 +11,7 @@
 # ----------------------------------------------------------------------------------------
 FROM azul/zulu-openjdk-alpine:11 as builder
 MAINTAINER dev@sling.apache.org
-RUN jlink --add-modules java.logging,java.naming,java.xml,java.security.jgss,java.sql,jdk.crypto.ec,java.desktop \
+RUN /usr/lib/jvm/zulu11-ca/bin/jlink --add-modules java.logging,java.naming,java.xml,java.security.jgss,java.sql,jdk.crypto.ec,java.desktop \
           --output /opt/jre --strip-debug --compress=2 --no-header-files --no-man-pages
 
 FROM alpine