From 324ee36fe31763e507b422ab0a88e4230045e205 Mon Sep 17 00:00:00 2001 From: "Timoney, Daniel (dt5972)" Date: Wed, 15 Feb 2017 10:37:53 -0500 Subject: Initial commit for OpenECOMP SDN-C OA&M Change-Id: I7ab579fd0d206bf356f36d52dcdf4f71f1fa2680 Signed-off-by: Timoney, Daniel (dt5972) Former-commit-id: 2a9f0edd09581f907e62ec4689b5ac94dd5382ba --- installation/ubuntu/pom.xml | 102 +++++++++++++++++++++++++ installation/ubuntu/src/main/docker/Dockerfile | 9 +++ 2 files changed, 111 insertions(+) create mode 100644 installation/ubuntu/pom.xml create mode 100644 installation/ubuntu/src/main/docker/Dockerfile (limited to 'installation/ubuntu') diff --git a/installation/ubuntu/pom.xml b/installation/ubuntu/pom.xml new file mode 100644 index 00000000..603ba267 --- /dev/null +++ b/installation/ubuntu/pom.xml @@ -0,0 +1,102 @@ + + + + + org.openecomp.sdnc.oam + installation + 1.0.0 + + + 4.0.0 + pom + org.openecomp.sdnc.oam + installation-ubuntu + 1.0.0 + + Installation - ubuntu + Creates base ubuntu Docker container + + + ecomp/ubuntu-sdnc-image + + + + + + + + + io.fabric8 + docker-maven-plugin + 0.16.5 + false + + + + + ${image.name} + + try + ${basedir}/target/docker-stage + ${basedir}/target/docker-stage/Dockerfile + + ${project.version} + latest + + + + + + + + generate-images + generate-sources + + build + + + + + push-images + deploy + + build + push + + + + + + + maven-resources-plugin + 2.6 + + + copy-dockerfile + + copy-resources + + validate + + ${basedir}/target/docker-stage + + + src/main/docker + + Dockerfile + + true + + + + + + + + + + + openECOMP + + diff --git a/installation/ubuntu/src/main/docker/Dockerfile b/installation/ubuntu/src/main/docker/Dockerfile new file mode 100644 index 00000000..4c6de286 --- /dev/null +++ b/installation/ubuntu/src/main/docker/Dockerfile @@ -0,0 +1,9 @@ +# Base ubuntu with added packages needed for open ecomp +FROM ubuntu:14.04.5 +MAINTAINER SDN-C Team (sdnc@lists.openecomp.org) +# Steps needed to run inside ATT +#COPY sources.list /etc/apt +#COPY my_key.pub /tmp +#RUN apt-key add - < /tmp/my_key.pub +# Add tools needed for OpenDaylight +RUN apt-get update && apt-get install -y git openjdk-7-jdk maven2 mysql-client nodejs nodejs-legacy python-pip graphviz npm -- cgit 1.2.3-korg