ab6d2095164692dc2d51c6a173ab3cbf58f6c629
[ta/caas-logging.git] / docker-build / elasticsearch / Dockerfile
1 # Copyright 2019 Nokia
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #     http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 FROM scratch
16 ADD centos-7-docker.tar.xz /
17 CMD ["/bin/bash"]
18 MAINTAINER Levente Kale <levente.kale@nokia.com>
19
20 ARG VERSION
21 ENV ES_VERSION=$VERSION
22
23 ENV PATH /usr/share/elasticsearch/bin:$PATH
24 ENV JAVA_HOME /usr/lib/jvm/jre-1.8.0-openjdk
25 ENV DOWNLOAD_URL "https://artifacts.elastic.co/downloads/elasticsearch"
26 ENV ES_TARBAL "${DOWNLOAD_URL}/elasticsearch-oss-${ES_VERSION}-linux-x86_64.tar.gz"
27
28 WORKDIR /usr/share/elasticsearch
29
30 RUN groupadd -g 202 elasticsearch \
31 &&  adduser -u 202 -g 202 -d /usr/share/elasticsearch elasticsearch \
32 &&  yum install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm \
33 &&  yum install -y --setopt=skip_missing_names_on_install=False \
34       java-1.8.0-openjdk-headless \
35       unzip \
36       which \
37       coreutils \
38       cronie \
39       supervisor \
40 &&  yum clean all \
41 &&  curl -fsSL ${ES_TARBAL} | tar zx --strip-components=1 \
42 &&  chown -R elasticsearch:elasticsearch /usr/share/elasticsearch \
43 # workaround for Elasticsearch: this way ES can list the used plugins, and remove the jdk folder (open jdk slimmer)
44 &&  cp -al /usr/share/elasticsearch/modules/* /usr/share/elasticsearch/plugins/ \
45 &&  rm -rf /usr/share/elasticsearch/jdk \
46 # workaround end
47 &&  sed '/GC logging/Q' -i /usr/share/elasticsearch/config/jvm.options   # disable GC logging
48
49 COPY elasticsearch-logrotate.sh /etc/cron.hourly/
50 COPY elasticsearch-setindex.sh /usr/share/elasticsearch/
51 COPY log4j2.properties /usr/share/elasticsearch/config/