include_header and include_footer parameter is already removed, remove them in all Dockerfiles. Add missing footer block. Change-Id: I90da03eb9f95a3827361d5f5ede65fde7d6be2b3
20 lines
482 B
Django/Jinja
20 lines
482 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}senlin-base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
|
|
{% block senlin_api_header %}{% endblock %}
|
|
|
|
{% if install_type == 'binary' %}
|
|
|
|
RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
|
|
&& /bin/false
|
|
|
|
{% endif %}
|
|
|
|
COPY extend_start.sh /usr/local/bin/kolla_senlin_extend_start
|
|
RUN chmod 755 /usr/local/bin/kolla_senlin_extend_start
|
|
|
|
{% block senlin_api_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|
|
|
|
USER senlin
|