From 3184da810b196d7e3eb7efe61ea7a7325dbc27f2 Mon Sep 17 00:00:00 2001 From: highstreetherbert Date: Thu, 17 Jun 2021 15:55:15 +0200 Subject: [PATCH] Fix docker build add path to java Issue-ID: SDNC-1566 Signed-off-by: highstreetherbert Change-Id: I0bfdf40f0d84641d3b515120c3e911dfac2687f3 Signed-off-by: highstreetherbert Former-commit-id: 9ca567925d014b1ea492fb065d47d686b7e7c86c --- installation/sdnc/src/main/docker/Dockerfile | 2 +- installation/sdnc/src/main/docker/standalone.Dockerfile | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/installation/sdnc/src/main/docker/Dockerfile b/installation/sdnc/src/main/docker/Dockerfile index 4de1bb3f..5a495f2c 100755 --- a/installation/sdnc/src/main/docker/Dockerfile +++ b/installation/sdnc/src/main/docker/Dockerfile @@ -18,6 +18,7 @@ FROM onap/ccsdk-odlsli-alpine-image:${ccsdk.docker.version} LABEL maintainer="SDN-C Team (sdnc@lists.onap.org)" +ENV PATH=$PATH:/opt/java/openjdk/bin ENV SDNC_CONFIG_DIR /opt/onap/sdnc/data/properties ENV SDNC_STORE_DIR /opt/onap/sdnc/data/stores ENV SSL_CERTS_DIR /etc/ssl/certs @@ -28,7 +29,6 @@ ENV SDNC_KEYPASS ${sdnc.keypass} ENV SDNC_SECUREPORT ${sdnc.secureport} USER root - COPY --from=stage0 --chown=odl:odl /opt /opt # Add SDNC repositories to boot repositories diff --git a/installation/sdnc/src/main/docker/standalone.Dockerfile b/installation/sdnc/src/main/docker/standalone.Dockerfile index 03f5eb9b..1dc26cf4 100755 --- a/installation/sdnc/src/main/docker/standalone.Dockerfile +++ b/installation/sdnc/src/main/docker/standalone.Dockerfile @@ -18,6 +18,7 @@ FROM onap/ccsdk-odlsli-alpine-image:${ccsdk.docker.version} LABEL maintainer="SDN-C Team (sdnc@lists.onap.org)" +ENV PATH=$PATH:/opt/java/openjdk/bin ENV SDNC_CONFIG_DIR /opt/onap/sdnc/data/properties ENV SDNC_STORE_DIR /opt/onap/sdnc/data/stores ENV SSL_CERTS_DIR /etc/ssl/certs -- 2.16.6