503120657e
This patchset contains customization of Dockerfile of Swift containers. Change-Id: I69250c4d9f6cc3949c9b9b52ea4b0cc2aec0231e Partially-implements: blueprint third-party-plugin-support
22 lines
643 B
Django/Jinja
22 lines
643 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}swift-base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% if install_type == 'binary' %}
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
|
{% set swift_acount_packages = ['openstack-swift-account'] %}
|
|
{% elif base_distro in ['ubuntu'] %}
|
|
{% set swift_acount_packages = ['swift-account'] %}
|
|
{% endif %}
|
|
|
|
RUN {{ macros.install_packages(swift_acount_packages | customizable("packages")) }}
|
|
|
|
{% endif %}
|
|
|
|
{% block swift_account_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|
|
{{ include_footer }}
|
|
|
|
USER swift
|