9ad412a418
This patchset contains customization of Dockerfile of cron container Change-Id: I7066b281d2a546e52ab0fdc2722da2e0026fc3a7 Partially-implements: blueprint third-party-plugin-support
27 lines
772 B
Django/Jinja
27 lines
772 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% if install_type == 'binary' %}
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
|
{% set cron_packages = [
|
|
'cronie',
|
|
'logrotate'
|
|
] %}
|
|
{% elif base_distro in ['ubuntu', 'debian'] %}
|
|
{% set cron_packages = [
|
|
'cron',
|
|
'logrotate'
|
|
] %}
|
|
{% endif %}
|
|
|
|
RUN {{ macros.install_packages(cron_packages | customizable("packages")) }}
|
|
{% endif %}
|
|
|
|
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 %}
|
|
{{ include_footer }}
|