diff options
author | Guangrong Fu <fu.guangrong@zte.com.cn> | 2017-08-22 20:18:39 +0800 |
---|---|---|
committer | Guangrong Fu <fu.guangrong@zte.com.cn> | 2017-08-22 20:44:28 +0800 |
commit | f84fc285718899604c9454fb6ecf0a77e1819ae0 (patch) | |
tree | 5c4db0543a86750aee008ae7936564ba571c68ba /rulemgt-standalone/src/main/assembly/Dockerfile | |
parent | 222f6b406dcc746cbe05111502c4882e9b5c91a4 (diff) |
Add a Dockerfile for docker-making
Change the package file from .zip to .tar.gz for linux
Add a Dockerfile
Change-Id: I31354fb5d4ffcd135b4f5574dea1ca4249d3c917
Issue-ID: HOLMES-39
Signed-off-by: Guangrong Fu <fu.guangrong@zte.com.cn>
Diffstat (limited to 'rulemgt-standalone/src/main/assembly/Dockerfile')
-rw-r--r-- | rulemgt-standalone/src/main/assembly/Dockerfile | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/rulemgt-standalone/src/main/assembly/Dockerfile b/rulemgt-standalone/src/main/assembly/Dockerfile new file mode 100644 index 0000000..0cad89d --- /dev/null +++ b/rulemgt-standalone/src/main/assembly/Dockerfile @@ -0,0 +1,48 @@ +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-rulemgt-standalone-*-linux64.tar.gz /home/holmes/ + +#RUN apt-get update + +#RUN apt-get install unzip + +#RUN unzip -qo holmes-rulemgt-standalone-*-linux64.zip -d . + +RUN chmod 755 /home/holmes/bin/*.sh + + +CMD /home/holmes/bin/run.sh + + |