2015-09-17 09:35:33 -07:00
|
|
|
FROM {{ namespace }}/{{ image_prefix }}swift-base:{{ tag }}
|
2015-11-23 12:38:58 +05:30
|
|
|
MAINTAINER {{ maintainer }}
|
2015-08-17 06:13:15 +02:00
|
|
|
|
|
|
|
{% if install_type == 'binary' %}
|
2015-09-04 02:15:03 -07:00
|
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
2015-08-17 06:13:15 +02:00
|
|
|
|
2015-09-30 11:23:39 +00:00
|
|
|
RUN yum -y install openstack-swift-object \
|
2015-08-17 06:13:15 +02:00
|
|
|
&& yum clean all
|
|
|
|
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
2016-01-11 11:01:30 +08:00
|
|
|
|
|
|
|
{{ include_footer }}
|