aboutsummaryrefslogtreecommitdiffstats
path: root/cmso-topology/src/main/docker/Dockerfile
diff options
context:
space:
mode:
authorShankaranarayanan Puzhavakath Narayanan <snarayanan@research.att.com>2019-03-27 18:47:22 +0000
committerGerrit Code Review <gerrit@onap.org>2019-03-27 18:47:22 +0000
commit8ac5bcde6d5151c0082fc4cbfd70a7d25226068c (patch)
treefaea2c46321137eaf2485d2b2c9935a6b0028447 /cmso-topology/src/main/docker/Dockerfile
parent1af01a99b8c7805deae239749c7f52a58717e63e (diff)
parentb21d6a299d1c39723823994aa77339f8596b1add (diff)
Merge "Commit 1 for Define Topology API mS"
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