Updated the GUI to HTTPS
[holmes/rule-management.git] / rulemgt-standalone / src / main / assembly / Dockerfile
1 FROM openresty/openresty:alpine
2
3 MAINTAINER "Guangrong Fu" <fu.guangrong@zte.com.cn>
4
5 EXPOSE 9101 9104 9105 9201
6
7 ENV HOSTNAME holmes-rule-mgmt
8
9 ENV LANG C.UTF-8
10
11 #install java-1.8-openjdk
12
13 # add a simple script that can auto-detect the appropriate JAVA_HOME value
14 # based on whether the JDK or only the JRE is installed
15 RUN { \
16                 echo '#!/bin/sh'; \
17                 echo 'set -e'; \
18                 echo; \
19                 echo 'dirname "$(dirname "$(readlink -f "$(which javac || which java)")")"'; \
20         } > /usr/local/bin/docker-java-home \
21         && chmod +x /usr/local/bin/docker-java-home
22 ENV JAVA_HOME /usr/lib/jvm/java-1.8-openjdk
23 ENV PATH $PATH:/usr/lib/jvm/java-1.8-openjdk/jre/bin:/usr/lib/jvm/java-1.8-openjdk/bin
24
25 ENV JAVA_ALPINE_VERSION 8.181.13-r0
26
27 RUN set -x \
28         && apk add --no-cache \
29                 openjdk8="$JAVA_ALPINE_VERSION" \
30         && [ "$JAVA_HOME" = "$(docker-java-home)" ]
31
32 #install neccessary tools
33 RUN apk upgrade \
34     && apk update \
35     && apk add --no-cache curl \
36     && apk add --no-cache postgresql-client=10.5-r0
37
38 #add the frontend pacakge to the docker images
39 RUN rm /etc/nginx/conf.d/default.conf
40 RUN mkdir -p /etc/ssl/certs/
41 RUN mkdir /etc/ssl/private
42 ADD holmes-rulemgt-frontend-*.tar.gz /usr/local/openresty/nginx/html
43 ADD nginx.conf /usr/local/openresty/nginx/conf
44 ADD holmes-frontend.key /etc/ssl/private
45 ADD holmes-frontend-selfsigned.crt /etc/ssl/certs
46 ADD dhparam.pem /etc/ssl/certs
47
48 #add the backend package to the docker image
49 RUN mkdir /home/holmes
50 WORKDIR /home/holmes
51 ADD holmes-rulemgt-standalone-*-linux64.tar.gz /home/holmes/
52 RUN chmod 755 /home/holmes/bin/*.sh
53
54 CMD ["sh", "/home/holmes/bin/run.sh"]
55