e5788a06e4
This patchset contains customization of Dockerfile of heat containers Change-Id: I3c2bae909ec6e8c3b0e460115ded3cc2456a212f Partially-implements: blueprint third-party-plugin-support
22 lines
724 B
Django/Jinja
22 lines
724 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}heat-base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% if install_type == 'binary' %}
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
|
{% set heat_api_packages = ['openstack-heat-api'] %}
|
|
{% elif base_distro in ['ubuntu'] %}
|
|
{% set heat_api_packages = ['heat-api'] %}
|
|
{% endif %}
|
|
RUN {{ macros.install_packages(heat_api_packages | customizable("packages")) }}
|
|
{% endif %}
|
|
|
|
COPY extend_start.sh /usr/local/bin/kolla_heat_extend_start
|
|
RUN chmod 755 /usr/local/bin/kolla_heat_extend_start
|
|
|
|
{% block heat_api_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|
|
{{ include_footer }}
|
|
|
|
USER heat
|