From 729d4f1e664faef575d4472bee57c7dab8c3eaba Mon Sep 17 00:00:00 2001 From: Piotr Jaszczyk Date: Wed, 12 Dec 2018 07:48:42 +0100 Subject: Allow to specify JVM options by means of env-var Change-Id: I042e022d650a07804096b397c31abc82a9633089 Issue-ID: DCAEGEN2-1025 Signed-off-by: Piotr Jaszczyk --- sources/hv-collector-main/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sources/hv-collector-main/Dockerfile') diff --git a/sources/hv-collector-main/Dockerfile b/sources/hv-collector-main/Dockerfile index 0170b645..ad7a03d6 100644 --- a/sources/hv-collector-main/Dockerfile +++ b/sources/hv-collector-main/Dockerfile @@ -11,9 +11,9 @@ RUN apt-get update \ WORKDIR /opt/ves-hv-collector -ENTRYPOINT ["java", "-cp", "*:", "org.onap.dcae.collectors.veshv.main.MainKt"] +ENTRYPOINT ["entry.sh"] COPY target/libs/external/* ./ COPY target/libs/internal/* ./ -COPY src/main/scripts/healthcheck.sh ./ +COPY src/main/scripts/*.sh ./ COPY target/hv-collector-main-*.jar ./ -- cgit 1.2.3-korg