diff options
author | sebdet <sebastien.determe@intl.att.com> | 2019-08-29 15:08:15 +0200 |
---|---|---|
committer | sebdet <sebastien.determe@intl.att.com> | 2019-08-29 15:21:35 +0200 |
commit | ba5fd7893e2460bc4cfc573dc1cf9bb577993df6 (patch) | |
tree | 903fa9679509ba57332b1290bdab4ab32c2818b8 | |
parent | 1e86592650fc695615e0fa34c947b32693d03466 (diff) |
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 <sebastien.determe@intl.att.com>
-rw-r--r-- | pom.xml | 1 | ||||
-rw-r--r-- | src/main/docker/elasticsearch/Dockerfile | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -1266,6 +1266,7 @@ </goals> <phase>deploy</phase> <configuration> + <skip>true</skip> <arguments>publish --registry ${npm.publish.url}</arguments> </configuration> </execution> diff --git a/src/main/docker/elasticsearch/Dockerfile b/src/main/docker/elasticsearch/Dockerfile index 2c932c8e..41252be1 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 \ |