2015-09-17 09:35:33 -07:00
|
|
|
FROM {{ namespace }}/{{ image_prefix }}cinder-base:{{ tag }}
|
2015-11-23 12:38:58 +05:30
|
|
|
MAINTAINER {{ maintainer }}
|
2015-08-12 10:38:06 +00:00
|
|
|
|
2016-01-12 12:39:44 +01:00
|
|
|
{% if install_type == 'binary' %}
|
|
|
|
{% if base_distro in ['ubuntu'] %}
|
|
|
|
|
|
|
|
RUN apt-get install -y --no-install-recommends \
|
|
|
|
cinder-scheduler \
|
|
|
|
&& apt-get clean
|
|
|
|
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
|
2015-08-28 13:17:41 +03:00
|
|
|
{{ include_footer }}
|
2015-11-30 10:30:37 +05:30
|
|
|
|
|
|
|
USER cinder
|