14 lines
312 B
Docker
Raw Normal View History

FROM {{ namespace }}/{{ image_prefix }}swift-base:{{ tag }}
MAINTAINER {{ maintainer }}
{% if install_type == 'binary' %}
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
RUN yum -y install openstack-swift-object \
&& yum clean all
{% endif %}
{% endif %}
{{ include_footer }}