From 73be2117cb63d51b394835a39c9e2df3379d4f0e Mon Sep 17 00:00:00 2001 From: Dan Timoney Date: Wed, 9 Aug 2017 13:37:32 -0400 Subject: [PATCH] Create base Ubuntu container Create base docker container for Ubuntu 16.04 LTS with packages needed for CCSDK SLI Issue-ID: CCSDK-27 Change-Id: I17a88fc2539f58ee6ced12ea64fbce45bc16a5ff Signed-off-by: Dan Timoney --- .gitignore | 44 +++++++++++++ pom.xml | 32 +++++++++ ubuntu/pom.xml | 133 ++++++++++++++++++++++++++++++++++++++ ubuntu/src/main/docker/Dockerfile | 15 +++++ 4 files changed, 224 insertions(+) create mode 100755 .gitignore create mode 100644 pom.xml create mode 100644 ubuntu/pom.xml create mode 100644 ubuntu/src/main/docker/Dockerfile diff --git a/.gitignore b/.gitignore new file mode 100755 index 00000000..f9801b8c --- /dev/null +++ b/.gitignore @@ -0,0 +1,44 @@ +#####standard .git ignore entries##### + +## IDE Specific Files ## +org.eclipse.core.resources.prefs +.classpath +.project +.settings +.idea +.externalToolBuilders +.checkstyle +maven-eclipse.xml +workspace + +## Compilation Files ## +*.class +**/target +target +target-ide +MANIFEST.MF + +## Misc Ignores (OS specific etc) ## +bin/ +dist +*~ +*.ipr +*.iml +*.iws +classes +out/ +.DS_STORE +.metadata + +## antlr4 generated files ## +ExprGrammarBaseListener.java +ExprGrammarLexer.java +ExprGrammarListener.java +ExprGrammarParser.java +ExprGrammar.tokens +ExprGrammarLexer.tokens + +# BlackDuck generated file +sdnc-core_bdio.jsonld +blackDuckHubProjectName.txt +blackDuckHubProjectVersionName.txt diff --git a/pom.xml b/pom.xml new file mode 100644 index 00000000..8c9e5eb8 --- /dev/null +++ b/pom.xml @@ -0,0 +1,32 @@ + + + + + org.onap.ccsdk.parent + odlparent-boron-sr3 + 0.0.1-SNAPSHOT + + + 4.0.0 + pom + org.onap.ccsdk.distribution + distribution-root + 0.0.1-SNAPSHOT + + Distribution + Creates distributuon bundles for CCSDK + + + distribution + + yyMMdd-HHmmss + ${maven.build.timestamp} + UTF-8 + UTF-8 + + + + ubuntu + + diff --git a/ubuntu/pom.xml b/ubuntu/pom.xml new file mode 100644 index 00000000..504d6736 --- /dev/null +++ b/ubuntu/pom.xml @@ -0,0 +1,133 @@ + + + + + org.onap.ccsdk.distribution + distribution-root + 0.0.1-SNAPSHOT + + + 4.0.0 + pom + distribution-ubuntu + 0.0.1-SNAPSHOT + + Distribution - ubuntu + Creates base ubuntu Docker container + + + onap/ccsdk-ubuntu-image + ${project.version} + + + + + + + + org.codehaus.groovy.maven + gmaven-plugin + + + validate + + execute + + + + println project.properties['ccsdk.project.version']; + def versionArray; + if ( project.properties['ccsdk.project.version'] != null ) { + versionArray = + project.properties['ccsdk.project.version'].split('\\.'); + } + + if (project.properties['ccsdk.project.version'].endsWith("-SNAPSHOT")) { + project.properties['project.docker.latesttag.version']=versionArray[0] + '.' + versionArray[1] + "-STAGING-latest"; + } else { + project.properties['project.docker.latesttag.version']=versionArray[0] + '.' + versionArray[1] + "-STAGING-latest"; + } + + println 'New Tag for docker:' + + project.properties['project.docker.latesttag.version']; + + + + + + + io.fabric8 + docker-maven-plugin + 0.16.5 + false + + + + + ${image.name} + + try + ${basedir}/target/docker-stage + ${basedir}/target/docker-stage/Dockerfile + + ${project.version} + ${project.version}-STAGING-${maven.build.timestamp} + ${project.docker.latesttag.version} + + + + + + + + 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/ubuntu/src/main/docker/Dockerfile b/ubuntu/src/main/docker/Dockerfile new file mode 100644 index 00000000..0066e761 --- /dev/null +++ b/ubuntu/src/main/docker/Dockerfile @@ -0,0 +1,15 @@ +# Base ubuntu with added packages needed for open ecomp +FROM ubuntu:16.04 +MAINTAINER CCSDK Team (onap-ccsdk@lists.onap.org) + +ARG HTTP_PROXY +ARG HTTPS_PROXY + +ENV HTTP_PROXY ${HTTP_PROXY} +ENV HTTPS_PROXY ${HTTPS_PROXY} + +RUN if [ ! -z ${HTTP_PROXY} ]; then echo "Acquire::http::proxy \"${HTTP_PROXY}\";" >> /etc/apt/apt.conf; fi && \ + if [ ! -z ${HTTPS_PROXY} ]; then echo "Acquire::https::proxy \"${HTTPS_PROXY}\";" >> /etc/apt/apt.conf; fi + +# Add tools needed for OpenDaylight +RUN apt-get update && apt-get install -y git openjdk-8-jdk maven mysql-client nodejs nodejs-legacy python-pip graphviz npm unzip -- 2.16.6