FROM {{ namespace }}/{{ image_prefix }}ceilometer-base:{{ tag }} MAINTAINER {{ maintainer }} {% if install_type == 'binary' %} {% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %} RUN yum -y install \ openstack-ceilometer-api \ && yum clean all {% elif base_distro in ['ubuntu'] %} RUN apt-get -y install --no-install-recommends \ ceilometer-api \ && apt-get clean {% endif %} {% endif %} COPY extend_start.sh /usr/local/bin/kolla_ceilometer_extend_start RUN chmod 755 /usr/local/bin/kolla_ceilometer_extend_start {{ include_footer }} USER ceilometer