90adc2b851
Defaults to 'image_prefix' for now but shows which images gets their names changed soon. Change-Id: I0608e8f62f28d6667b4c8753c47553e4cbf75503
25 lines
685 B
Django/Jinja
25 lines
685 B
Django/Jinja
FROM {{ namespace }}/{{ infra_image_prefix }}base:{{ tag }}
|
|
{% block labels %}
|
|
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
|
{% endblock %}
|
|
|
|
{% block tgtd_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% if base_package_type == 'rpm' %}
|
|
|
|
RUN echo 'Not available for {{ base_distro }}' \
|
|
&& /bin/false
|
|
|
|
{% elif base_package_type == 'deb' %}
|
|
{% set tgtd_packages = ['tgt'] %}
|
|
|
|
{{ macros.install_packages(tgtd_packages | customizable("packages")) }}
|
|
RUN sed -i '1 i include /var/lib/cinder/volumes/*' /etc/tgt/targets.conf
|
|
|
|
{% endif %}
|
|
|
|
{% block tgtd_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|