ab679adcbf
Many images have 'if x86_64 then amd64 elif aarch64 then arm64' check to comply with Debian like architecture names in several projects. This patch creates 'debian_arch' variable which can be used in all Docker files (similar to 'base_arch' one). All required images got converted to use it. Change-Id: I9c5e6f13d6c9b24fe323408512bd5aef290111ad
44 lines
1.3 KiB
Django/Jinja
44 lines
1.3 KiB
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}base:{{ tag }}
|
|
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
|
|
|
{% block elasticsearch_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{{ macros.configure_user(name='elasticsearch', shell='/bin/bash', homedir='/usr/share/elasticsearch') }}
|
|
|
|
{% if base_package_type == 'rpm' %}
|
|
{% set elasticsearch_packages = [
|
|
'elasticsearch',
|
|
'java-1.8.0-openjdk-headless',
|
|
] %}
|
|
|
|
ENV JAVA_HOME /usr/lib/jvm/jre-1.8.0-openjdk/
|
|
|
|
{% elif base_package_type == 'deb' %}
|
|
{% set elasticsearch_packages = [
|
|
'default-jre-headless',
|
|
'elasticsearch',
|
|
] %}
|
|
|
|
ENV JAVA_HOME /usr/lib/jvm/java-8-openjdk-{{debian_arch}}/
|
|
|
|
{% endif %}
|
|
|
|
ENV ES_SKIP_SET_KERNEL_PARAMETERS true
|
|
|
|
{{ macros.install_packages(elasticsearch_packages | customizable("packages")) }}
|
|
COPY extend_start.sh /usr/local/bin/kolla_extend_start
|
|
|
|
# NOTE: By default the shell of the elasticsearch user is /bin/false. We have to
|
|
# change the shell to /bin/bash to be able to run elasticsearch as a non-root user.
|
|
#
|
|
# https://discuss.elastic.co/t/running-as-non-root-user-service-wrapper-has-changed/7863
|
|
|
|
RUN chmod 755 /usr/local/bin/kolla_extend_start
|
|
|
|
{% block elasticsearch_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|
|
|
|
USER elasticsearch
|