503120657e
This patchset contains customization of Dockerfile of Swift containers. Change-Id: I69250c4d9f6cc3949c9b9b52ea4b0cc2aec0231e Partially-implements: blueprint third-party-plugin-support
21 lines
662 B
Django/Jinja
21 lines
662 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}swift-base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% if base_distro in ['fedora', 'centos', 'oraclelinux', 'rhel'] %}
|
|
{% set swift_rsyncd_packages = ['rsync'] %}
|
|
{% elif base_distro in ['ubuntu', 'debian'] %}
|
|
{% set swift_rsyncd_packages = ['rsync'] %}
|
|
{% endif %}
|
|
|
|
RUN {{ macros.install_packages(swift_rsyncd_packages | customizable("packages")) }}
|
|
COPY extend_start.sh /usr/local/bin/kolla_extend_start
|
|
RUN chmod 755 /usr/local/bin/kolla_extend_start
|
|
|
|
{% block swift_rsyncd_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|
|
{{ include_footer }}
|
|
|
|
USER swift
|