489bcd3c75
Add customizations for heat-api-cfn containers Partially-implements: blueprint third-party-plugin-support Change-Id: Ibee860cd902cbd4167e4ae20b498c4652c2ad430 Signed-off-by: Eduardo Gonzalez <dabarren@gmail.com>
20 lines
636 B
Django/Jinja
20 lines
636 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_cfn_packages = ['openstack-heat-api-cfn'] %}
|
|
{% elif base_distro in ['ubuntu'] %}
|
|
{% set heat_api_cfn_packages = ['heat-api-cfn'] %}
|
|
{% endif %}
|
|
RUN {{ macros.install_packages(heat_api_cfn_packages | customizable("packages")) }}
|
|
{% endif %}
|
|
|
|
{% block heat_api_cfn_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|
|
{{ include_footer }}
|
|
|
|
USER heat
|