e5903d5fa9
include_header and include_footer parameter is already removed, remove them in all Dockerfiles. Add missing footer block. Change-Id: I90da03eb9f95a3827361d5f5ede65fde7d6be2b3
27 lines
687 B
Django/Jinja
27 lines
687 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
|
|
{% block cron_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% if base_distro in ['centos', 'oraclelinux', 'rhel'] %}
|
|
{% set cron_packages = [
|
|
'cronie',
|
|
'logrotate'
|
|
] %}
|
|
{% elif base_distro in ['ubuntu', 'debian'] %}
|
|
{% set cron_packages = [
|
|
'cron',
|
|
'logrotate'
|
|
] %}
|
|
{% endif %}
|
|
|
|
{{ macros.install_packages(cron_packages | customizable("packages")) }}
|
|
|
|
COPY extend_start.sh /usr/local/bin/kolla_extend_start
|
|
RUN chmod 755 /usr/local/bin/kolla_extend_start
|
|
|
|
{% block cron_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|