93b5c12abf
Change-Id: I8970d02ccbed1dfc221683e273edc2680207056b Partial-Bug: #1546944
25 lines
564 B
Django/Jinja
25 lines
564 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}heat-base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
|
|
{% if install_type == 'binary' %}
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
|
|
|
RUN yum -y install openstack-heat-api \
|
|
&& yum clean all
|
|
|
|
{% elif base_distro in ['ubuntu'] %}
|
|
|
|
RUN apt-get install -y --no-install-recommends \
|
|
heat-api \
|
|
&& apt-get clean
|
|
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
COPY extend_start.sh /usr/local/bin/kolla_heat_extend_start
|
|
RUN chmod 755 /usr/local/bin/kolla_heat_extend_start
|
|
|
|
{{ include_footer }}
|
|
|
|
USER heat
|