aboutsummaryrefslogtreecommitdiffstats
path: root/hv-collector-main/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'hv-collector-main/Dockerfile')
-rw-r--r--hv-collector-main/Dockerfile11
1 files changed, 11 insertions, 0 deletions
diff --git a/hv-collector-main/Dockerfile b/hv-collector-main/Dockerfile
new file mode 100644
index 00000000..fd7ce21c
--- /dev/null
+++ b/hv-collector-main/Dockerfile
@@ -0,0 +1,11 @@
+FROM openjdk:10-jre-slim
+LABEL maintainer="Nokia Wroclaw ONAP Team"
+
+EXPOSE 8081
+
+WORKDIR /opt/ves-hv-collector
+ENTRYPOINT ["java", "-cp", "*:", "org.onap.dcae.collectors.veshv.main.MainKt"]
+CMD ["--listen-port", "8081", "--config-url", ""]
+COPY target/libs/external/* ./
+COPY target/libs/internal/* ./
+COPY target/hv-collector-main-*.jar ./ \ No newline at end of file