X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=rulemgt-standalone%2Fsrc%2Fmain%2Fassembly%2FDockerfile;h=080d7ca4cf39ca668b37603d577889ff7d7a4f9e;hb=9d667bd7ceaa1647511c662bbaa73a358135d57b;hp=03265a6e96ab0a4140160d4ea3389b04270c8e6d;hpb=5cda27796aec073b78b2157d4df15a3926c8ba37;p=holmes%2Frule-management.git diff --git a/rulemgt-standalone/src/main/assembly/Dockerfile b/rulemgt-standalone/src/main/assembly/Dockerfile index 03265a6..080d7ca 100644 --- a/rulemgt-standalone/src/main/assembly/Dockerfile +++ b/rulemgt-standalone/src/main/assembly/Dockerfile @@ -2,7 +2,7 @@ FROM openresty/openresty:alpine MAINTAINER "Guangrong Fu" -EXPOSE 9101 9104 9201 +EXPOSE 9101 9104 9105 9201 ENV HOSTNAME holmes-rule-mgmt @@ -22,7 +22,7 @@ RUN { \ 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_ALPINE_VERSION 8.171.11-r0 +ENV JAVA_ALPINE_VERSION 8.181.13-r0 RUN set -x \ && apk add --no-cache \ @@ -33,12 +33,17 @@ RUN set -x \ RUN apk upgrade \ && apk update \ && apk add --no-cache curl \ - && apk add --no-cache postgresql-client=10.4-r0 + && apk add --no-cache postgresql-client=10.5-r0 #add the frontend pacakge to the docker images RUN rm /etc/nginx/conf.d/default.conf +RUN mkdir -p /etc/ssl/certs/ +RUN mkdir /etc/ssl/private ADD holmes-rulemgt-frontend-*.tar.gz /usr/local/openresty/nginx/html ADD nginx.conf /usr/local/openresty/nginx/conf +ADD holmes-frontend.key /etc/ssl/private +ADD holmes-frontend-selfsigned.crt /etc/ssl/certs +ADD dhparam.pem /etc/ssl/certs #add the backend package to the docker image RUN mkdir /home/holmes