kolla/docker/trove/trove-conductor/Dockerfile.j2

23 lines
474 B
Django/Jinja

FROM {{ namespace }}/{{ image_prefix }}trove-base:{{ tag }}
MAINTAINER {{ maintainer }}
{% if install_type == 'binary' %}
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
RUN yum -y install \
openstack-trove-conductor \
&& yum clean all
{% elif base_distro in ['ubuntu'] %}
RUN apt-get install -y --no-install-recommends \
trove-conductor \
&& apt-get clean
{% endif %}
{% endif %}
{{ include_footer }}
USER trove