e5903d5fa9
include_header and include_footer parameter is already removed, remove them in all Dockerfiles. Add missing footer block. Change-Id: I90da03eb9f95a3827361d5f5ede65fde7d6be2b3
23 lines
656 B
Django/Jinja
23 lines
656 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}swift-base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
|
|
{% block swift_account_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% if install_type == 'binary' %}
|
|
{% if base_distro in ['centos', 'oraclelinux', 'rhel'] %}
|
|
{% set swift_acount_packages = ['openstack-swift-account'] %}
|
|
{% elif base_distro in ['ubuntu'] %}
|
|
{% set swift_acount_packages = ['swift-account'] %}
|
|
{% endif %}
|
|
|
|
{{ macros.install_packages(swift_acount_packages | customizable("packages")) }}
|
|
|
|
{% endif %}
|
|
|
|
{% block swift_account_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|
|
|
|
USER swift
|