e21aeb5ae9
As we have one type of images now some RUN calls could be merged so we will have less layers in resulting images. Change-Id: I5178c58fbd8c65efe825dc249c0f1368ef0fe8e0
35 lines
1.0 KiB
Django/Jinja
35 lines
1.0 KiB
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}openstack-base:{{ tag }}
|
|
{% block labels %}
|
|
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
|
{% endblock %}
|
|
|
|
{% block heat_base_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{{ macros.enable_extra_repos(['openvswitch']) }}
|
|
{{ macros.configure_user(name='heat') }}
|
|
|
|
{% set heat_base_packages = [
|
|
] %}
|
|
|
|
{{ macros.install_packages(heat_base_packages | customizable("packages")) }}
|
|
|
|
ADD heat-base-archive /heat-base-source
|
|
|
|
{% set heat_base_pip_packages = [
|
|
'/heat'
|
|
] %}
|
|
|
|
COPY extend_start.sh /usr/local/bin/kolla_extend_start
|
|
|
|
RUN ln -s heat-base-source/* heat \
|
|
&& {{ macros.install_pip(heat_base_pip_packages | customizable("pip_packages")) }} \
|
|
&& mkdir -p /etc/heat \
|
|
&& cp -r /heat/etc/heat/* /etc/heat/ \
|
|
&& chown -R heat: /etc/heat \
|
|
&& touch /usr/local/bin/kolla_heat_extend_start \
|
|
&& chmod 644 /usr/local/bin/kolla_extend_start /usr/local/bin/kolla_heat_extend_start
|
|
|
|
{% block heat_base_footer %}{% endblock %}
|