From: sebdet Date: Thu, 29 Aug 2019 13:08:15 +0000 (+0200) Subject: Fix elastic search image X-Git-Tag: 6.0.0~11^2~344^2~2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=ba5fd7893e2460bc4cfc573dc1cf9bb577993df6;p=policy%2Fclamp.git Fix elastic search image There was a problem to execute the script as it was not executable Issue-ID: CLAMP-485 Change-Id: I01323bff5ae14bd4b94815dea0ebd3a6ca8fa071 Signed-off-by: sebdet --- diff --git a/pom.xml b/pom.xml index ca20dfca4..f857945e9 100644 --- a/pom.xml +++ b/pom.xml @@ -1266,6 +1266,7 @@ deploy + true publish --registry ${npm.publish.url} diff --git a/src/main/docker/elasticsearch/Dockerfile b/src/main/docker/elasticsearch/Dockerfile index 2c932c8e9..41252be15 100644 --- a/src/main/docker/elasticsearch/Dockerfile +++ b/src/main/docker/elasticsearch/Dockerfile @@ -6,6 +6,7 @@ COPY config/ config/ COPY bin/ bin/ #RUN chmod +x bin/init_sg.sh COPY my-entrypoint.sh /usr/local/bin/my-entrypoint.sh +RUN chmod a+x /usr/local/bin/my-entrypoint.sh # Search Guard plugin RUN elasticsearch-plugin install --batch com.floragunn:search-guard-6:6.6.2-25.1 \ && chmod +x plugins/search-guard-6/tools/*.sh \