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