c6d36c68e1
Change-Id: Id17f467235d70127ce92bab52a08b97a062ea207 Partially-Implements: blueprint dockerfile-template
17 lines
413 B
Django/Jinja
17 lines
413 B
Django/Jinja
FROM {{ namespace }}/{{ base_distro }}-{{ install_type }}-ceilometer-base:{{ tag }}
|
|
MAINTAINER Kolla Project (https://launchpad.net/kolla)
|
|
|
|
{% if install_type == 'binary' %}
|
|
{% if base_distro in ['fedora', 'centos', 'oraclelinux'] %}
|
|
|
|
RUN yum install -y openstack-ceilometer-collector \
|
|
&& yum clean all
|
|
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
COPY ./start.sh /
|
|
COPY config-external.sh /opt/kolla/
|
|
|
|
CMD ["/start.sh"]
|