aboutsummaryrefslogtreecommitdiffstats
path: root/cmso-topology/src/main/docker/Dockerfile
diff options
context:
space:
mode:
authorJerry Flood <jflood@att.com>2019-03-26 15:00:17 -0400
committerJerry Flood <jflood@att.com>2019-03-27 13:51:47 -0400
commitb21d6a299d1c39723823994aa77339f8596b1add (patch)
treecf373d347bef91d8811f0bfd8c7d08b5837b78c9 /cmso-topology/src/main/docker/Dockerfile
parente91151478fa2b4904de7cdd9b9a7b6eca8e1a374 (diff)
Commit 1 for Define Topology API mS
Multiple commits required due to commit size limitation. Change-Id: If6188c73d9012fb72b4054cc6e88ecd794449710 Issue-ID: OPTFRA-430 Signed-off-by: Jerry Flood <jflood@att.com>
Diffstat (limited to 'cmso-topology/src/main/docker/Dockerfile')
-rw-r--r--cmso-topology/src/main/docker/Dockerfile33
1 files changed, 33 insertions, 0 deletions
diff --git a/cmso-topology/src/main/docker/Dockerfile b/cmso-topology/src/main/docker/Dockerfile
new file mode 100644
index 0000000..4c663b4
--- /dev/null
+++ b/cmso-topology/src/main/docker/Dockerfile
@@ -0,0 +1,33 @@
+FROM ubuntu:16.04
+
+MAINTAINER "The Onap Team"
+LABEL Description="This image contains ubuntu 16.04 with the openjdk installed" Version="16.04-8"
+ENV APP_HOME=/opt/app/cmso
+ARG http_proxy
+ARG https_proxy
+ENV HTTP_PROXY=$http_proxy
+ENV HTTPS_PROXY=$https_proxy
+ENV http_proxy=$HTTP_PROXY
+ENV https_proxy=$HTTPS_PROXY
+
+RUN test -n "$http_proxy" && echo "Acquire::Proxy \"http://$http_proxy\";" > /etc/apt/apt.conf.d/02proxy || true && \
+ apt-get update && \
+ apt-get -y dist-upgrade && \
+ apt-get install -y openjdk-8-jre-headless
+
+COPY onap-cmso-topology/cmso-topology.jar ${APP_HOME}/app.jar
+
+VOLUME /share/etc
+VOLUME /share/logs
+VOLUME /share/debug-logs
+
+COPY onap-cmso-topology/startService.sh ${APP_HOME}/startService.sh
+COPY onap-cmso-topology/data ${APP_HOME}/data
+
+RUN chmod 700 ${APP_HOME}/startService.sh
+RUN ln -s /share/etc ${APP_HOME}/etc
+RUN ln -s /share/logs ${APP_HOME}/logs
+RUN ln -s /share/debug-logs ${APP_HOME}/debug-logs
+
+WORKDIR ${APP_HOME}
+ENTRYPOINT ./startService.sh