kolla/docker/novajoin/novajoin-notifier/Dockerfile.j2
Christian Berendt 861f55fbfd Add block labels to all Dockerfiles
Change-Id: I9692dda817ef134d647247431565e1b58cf9da41
2020-03-01 17:25:58 +00:00

19 lines
566 B
Django/Jinja

FROM {{ namespace }}/{{ image_prefix }}novajoin-base:{{ tag }}
{% block labels %}
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
{% endblock %}
{% block novajoin_notifier_header %}{% endblock %}
{% import "macros.j2" as macros with context %}
{% if install_type == 'binary' %}
{% if base_package_type != 'rpm' %}
RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
&& /bin/false
{% endif %}
{% endif %}
{% block novajoin_notifier_footer %}{% endblock %}
{% block footer %}{% endblock %}