diff options
author | Guangrong Fu <fu.guangrong@zte.com.cn> | 2017-08-23 17:33:56 +0800 |
---|---|---|
committer | Guangrong Fu <fu.guangrong@zte.com.cn> | 2017-08-23 17:33:56 +0800 |
commit | 0ab31f4e9e13066be37c4d4dc6b5c117a64b9a18 (patch) | |
tree | 80ed97933957ecdd8f690bd9f8afc8b19eddf837 /engine-d-standalone/src/main/assembly/Dockerfile | |
parent | 601799e1017e8731fa44512cf699127c9f494fe8 (diff) |
Add a Dockerfile for Docker-making
Change the package file from *.zip to *.tar.gz for Linux
Add a Dockerfile
Change-Id: I9b8213822961bf0997bc32c8ed667b0ea8b3843e
Issue-ID: HOLMES-39
Signed-off-by: Guangrong Fu <fu.guangrong@zte.com.cn>
Diffstat (limited to 'engine-d-standalone/src/main/assembly/Dockerfile')
-rw-r--r-- | engine-d-standalone/src/main/assembly/Dockerfile | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/engine-d-standalone/src/main/assembly/Dockerfile b/engine-d-standalone/src/main/assembly/Dockerfile new file mode 100644 index 0000000..03f09c2 --- /dev/null +++ b/engine-d-standalone/src/main/assembly/Dockerfile @@ -0,0 +1,42 @@ +FROM openresty/openresty:alpine + +MAINTAINER "Guangrong Fu" <fu.guangrong@zte.com.cn> + +#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-engine-d-standalone-*-linux64.tar.gz /home/holmes/ + +RUN chmod 755 /home/holmes/bin/*.sh + + +CMD /home/holmes/bin/run.sh + + |