diff options
Diffstat (limited to 'rulemgt-standalone/src')
-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 + + |