5cd30d4914
Closes-bug: #1616387 Change-Id: Id97f88b9baa3d48d33ce120962450a374282d044
24 lines
694 B
Django/Jinja
24 lines
694 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}swift-base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
|
|
{% block swift_container_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% if install_type == 'binary' %}
|
|
{% if base_distro in ['centos', 'oraclelinux', 'rhel'] %}
|
|
{% set swift_container_packages = ['openstack-swift-container'] %}
|
|
{% elif base_distro in ['ubuntu'] %}
|
|
{% set swift_container_packages = ['swift-container'] %}
|
|
{% endif %}
|
|
|
|
{{ macros.install_packages(swift_container_packages | customizable("packages")) }}
|
|
|
|
{% endif %}
|
|
|
|
{% block swift_container_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|
|
{{ include_footer }}
|
|
|
|
USER swift
|