17 lines
325 B
Docker
Raw Normal View History

FROM {{ namespace }}/{{ image_prefix }}cinder-base:{{ tag }}
MAINTAINER {{ maintainer }}
{% if install_type == 'binary' %}
{% if base_distro in ['ubuntu'] %}
RUN apt-get install -y --no-install-recommends \
cinder-scheduler \
&& apt-get clean
{% endif %}
{% endif %}
{{ include_footer }}
USER cinder