diff options
Diffstat (limited to 'hv-collector-xnf-simulator/Dockerfile')
-rw-r--r-- | hv-collector-xnf-simulator/Dockerfile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/hv-collector-xnf-simulator/Dockerfile b/hv-collector-xnf-simulator/Dockerfile index e48a80e7..53406459 100644 --- a/hv-collector-xnf-simulator/Dockerfile +++ b/hv-collector-xnf-simulator/Dockerfile @@ -1,4 +1,4 @@ -FROM openjdk:10-jre-slim +FROM docker.io/openjdk:8-jre-slim LABEL copyright="Copyright (C) 2018 NOKIA" LABEL license.name="The Apache Software License, Version 2.0" @@ -10,8 +10,11 @@ RUN apt-get update \ && apt-get clean WORKDIR /opt/ves-hv-client-simulator -ENTRYPOINT ["java", "-cp", "*:", "org.onap.dcae.collectors.veshv.simulators.xnf.MainKt"] +ENTRYPOINT ["./run-java.sh", "run"] +COPY target/docker-extra/run-java/run-java.sh ./ + +ENV JAVA_MAIN_CLASS=org.onap.dcae.collectors.veshv.simulators.xnf.MainKt + COPY target/libs/external/* ./ COPY target/libs/internal/* ./ COPY target/hv-collector-xnf-simulator-*.jar ./ - |