summaryrefslogtreecommitdiffstats
path: root/dmaap-dsa-standalone/src/main/assembly/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'dmaap-dsa-standalone/src/main/assembly/Dockerfile')
-rw-r--r--dmaap-dsa-standalone/src/main/assembly/Dockerfile42
1 files changed, 42 insertions, 0 deletions
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" <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-dsa-standalone-*-linux64.tar.gz /home/holmes/
+
+RUN chmod 755 /home/holmes/bin/*.sh
+
+
+CMD /home/holmes/bin/run.sh
+
+