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-compute \ python-ceilometerclient \ && yum clean all {% elif base_distro in ['ubuntu', 'debian'] %} RUN apt-get -y install --no-install-recommends \ ceilometer-agent-compute \ python-ceilometerclient \ && apt-get clean {% endif %} {% elif install_type == 'source' %} {% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %} RUN yum -y install \ libvirt-devel \ && yum clean all {% elif base_distro in ['ubuntu', 'debian'] %} RUN apt-get -y install --no-install-recommends \ libvirt-dev \ && apt-get clean {% endif %} RUN /var/lib/kolla/venv/bin/pip --no-cache-dir install --upgrade -c requirements/upper-constraints.txt libvirt-python {% endif %} {{ include_footer }} USER ceilometer