kolla/docker/swift/swift-object-expirer/Dockerfile.j2
Jeffrey Zhang e5903d5fa9 Remove include_header and include_footer in all Dockerfiles
include_header and include_footer parameter is already removed, remove
them in all Dockerfiles.
Add missing footer block.

Change-Id: I90da03eb9f95a3827361d5f5ede65fde7d6be2b3
2017-02-05 10:44:48 +08:00

25 lines
843 B
Django/Jinja

FROM {{ namespace }}/{{ image_prefix }}swift-base:{{ tag }}
MAINTAINER {{ maintainer }}
{% block swift_object_expirer_header %}{% endblock %}
{% import "macros.j2" as macros with context %}
{% if install_type == 'binary' %}
{% if base_distro in ['centos', 'oraclelinux', 'rhel'] %}
# RDO has it packaged in the wrong package for now. The issue is being
# tracked in https://bugzilla.redhat.com/show_bug.cgi?id=1382921
{% set swift_object_expirer_packages = ['openstack-swift-proxy'] %}
{% elif base_distro in ['ubuntu'] %}
{% set swift_object_expirer_packages = ['swift-object'] %}
{% endif %}
{{ macros.install_packages(swift_object_expirer_packages | customizable("packages")) }}
{% endif %}
{% block swift_object_expirer_footer %}{% endblock %}
{% block footer %}{% endblock %}
USER swift