From 1fdabe805e7c6a6716b3f4f3afea90213e2661cc Mon Sep 17 00:00:00 2001 From: Guangrong Fu Date: Wed, 23 Aug 2017 17:34:37 +0800 Subject: [PATCH] Add a Dockerfile for Docker-making Change the package file from *.zip to *.tar.gz for Linux Add a Dockerfile Change-Id: I2cd74c9e06caefa7a17d22279e6d1b7ffcd1d62b Issue-ID: HOLMES-39 Signed-off-by: Guangrong Fu --- dmaap-dsa-standalone/linux64-assembly.xml | 2 +- dmaap-dsa-standalone/pom.xml | 371 +++++++++++++--------- dmaap-dsa-standalone/src/main/assembly/Dockerfile | 42 +++ 3 files changed, 263 insertions(+), 152 deletions(-) create mode 100644 dmaap-dsa-standalone/src/main/assembly/Dockerfile diff --git a/dmaap-dsa-standalone/linux64-assembly.xml b/dmaap-dsa-standalone/linux64-assembly.xml index 4bb9c11..56676c8 100644 --- a/dmaap-dsa-standalone/linux64-assembly.xml +++ b/dmaap-dsa-standalone/linux64-assembly.xml @@ -19,7 +19,7 @@ xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd"> linux64 - zip + tar.gz false diff --git a/dmaap-dsa-standalone/pom.xml b/dmaap-dsa-standalone/pom.xml index 2155cdd..e702dd9 100644 --- a/dmaap-dsa-standalone/pom.xml +++ b/dmaap-dsa-standalone/pom.xml @@ -17,158 +17,227 @@ --> - - org.onap.holmes.dsa - holmes-dsa-parent - 1.0.0-SNAPSHOT - + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + + org.onap.holmes.dsa + holmes-dsa-parent + 1.0.0-SNAPSHOT + - dmaap-dsa-standalone - 4.0.0 - holmes-dsa/holmes-dmaap-dsa-standalone - pom + holmes-dmaap-dsa-standalone + 4.0.0 + holmes-dsa/holmes-dmaap-dsa-standalone + pom - - - - maven-resources-plugin - - - copy-resources-${linux64id} - process-resources - - copy-resources - - - ${linux64outputdir} - - - src/main/assembly/ - false - - **/* - - - **/*.bat - - - - true - - - - copy-resources-${win64id} - process-resources - - copy-resources - - - ${win64outputdir} - - - src/main/assembly/ - false - - **/* - - - **/*.sh - - - - true - - - - - - org.apache.maven.plugins - maven-dependency-plugin - - - copy-jar-${linux64id} - - copy - - prepare-package - - - - org.onap.holmes.dsa - dmaap-dsa - jar - true - ${linux64outputdir} - dmaap-dsa.jar - - - - - - copy-jar-${win64id} - - copy - - prepare-package - - - - org.onap.holmes.dsa - dmaap-dsa - jar - true - ${win64outputdir} - dmaap-dsa.jar - - - - - - - - org.apache.maven.plugins - maven-assembly-plugin - - - linux64 - - - linux64-assembly.xml - - true - target/version - - package - - attached - - - - win64 - - - win64-assembly.xml - - true - target/version - - package - - attached - - - - - - + + + + maven-resources-plugin + + + copy-resources-${linux64id} + process-resources + + copy-resources + + + ${linux64outputdir} + + + src/main/assembly/ + false + + **/* + + + **/*.bat + + + + true + + + + copy-resources-${win64id} + process-resources + + copy-resources + + + ${win64outputdir} + + + src/main/assembly/ + false + + **/* + + + **/*.sh + + + + true + + + + copy-dockerfile + process-resources + + copy-resources + + + target/version + + + src/main/assembly/ + false + + Dockerfile + + + + true + + + + + + org.apache.maven.plugins + maven-dependency-plugin + + + copy-jar-${linux64id} + + copy + + prepare-package + + + + org.onap.holmes.dsa + dmaap-dsa + jar + true + ${linux64outputdir} + dmaap-dsa.jar + + + + + + copy-jar-${win64id} + + copy + + prepare-package + + + + org.onap.holmes.dsa + dmaap-dsa + jar + true + ${win64outputdir} + dmaap-dsa.jar + + + + + + + + org.apache.maven.plugins + maven-assembly-plugin + + + linux64 + + + linux64-assembly.xml + + true + target/version + + package + + attached + + + + win64 + + + win64-assembly.xml + + true + target/version + + package + + attached + + + + + + - - - org.onap.holmes.dsa - dmaap-dsa - ${project.version} - - + + + docker + + + + io.fabric8 + docker-maven-plugin + 0.16.5 + false + + + + onap/holmes/dsa + + try + ${basedir}/target/version/ + ${basedir}/target/version/Dockerfile + + ${project.version}-STAGING-latest + + + + + + + + generate-images + package + + build + + + + + push-images + deploy + + build + push + + + + + + + + + + + + org.onap.holmes.dsa + dmaap-dsa + ${project.version} + + diff --git a/dmaap-dsa-standalone/src/main/assembly/Dockerfile b/dmaap-dsa-standalone/src/main/assembly/Dockerfile new file mode 100644 index 0000000..f0325da --- /dev/null +++ b/dmaap-dsa-standalone/src/main/assembly/Dockerfile @@ -0,0 +1,42 @@ +FROM openresty/openresty:alpine + +MAINTAINER "Guangrong Fu" + +#install java-1.8-openjdk + +ENV LANG C.UTF-8 + +# add a simple script that can auto-detect the appropriate JAVA_HOME value +# based on whether the JDK or only the JRE is installed +RUN { \ + echo '#!/bin/sh'; \ + echo 'set -e'; \ + echo; \ + echo 'dirname "$(dirname "$(readlink -f "$(which javac || which java)")")"'; \ + } > /usr/local/bin/docker-java-home \ + && chmod +x /usr/local/bin/docker-java-home +ENV JAVA_HOME /usr/lib/jvm/java-1.8-openjdk +ENV PATH $PATH:/usr/lib/jvm/java-1.8-openjdk/jre/bin:/usr/lib/jvm/java-1.8-openjdk/bin + +ENV JAVA_VERSION 8u131 +ENV JAVA_ALPINE_VERSION 8.131.11-r2 + +RUN set -x \ + && apk add --no-cache \ + openjdk8="$JAVA_ALPINE_VERSION" \ + && [ "$JAVA_HOME" = "$(docker-java-home)" ] + +#add holmes related resources to the docker image + +RUN mkdir /home/holmes + +WORKDIR /home/holmes + +ADD holmes-dsa-standalone-*-linux64.tar.gz /home/holmes/ + +RUN chmod 755 /home/holmes/bin/*.sh + + +CMD /home/holmes/bin/run.sh + + -- 2.16.6