ec3baf0428
Test results of this patch set are at http://paste.openstack.org/show/490450/. Change-Id: I2957cc70fcca34706ec50a630d785f0630c3f5c0 Closes-Bug: #1553203
24 lines
470 B
Django/Jinja
24 lines
470 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
|
|
RUN useradd -r -m --user-group kibana \
|
|
&& usermod -a -G kolla kibana
|
|
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
|
|
|
RUN yum -y install \
|
|
kibana \
|
|
&& yum clean all
|
|
|
|
{% elif base_distro in ['ubuntu', 'debian'] %}
|
|
|
|
RUN apt-get install -y --no-install-recommends \
|
|
kibana \
|
|
&& apt-get clean
|
|
|
|
{% endif %}
|
|
|
|
{{ include_footer }}
|
|
|
|
USER kibana
|