343f70e7cf
Change-Id: Ie3731732f2026cd0d3a1bda2925be2b6479ae5c7 Partial-Bug:#1569417
28 lines
658 B
Django/Jinja
28 lines
658 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}nova-base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
|
|
{% if install_type == 'binary' %}
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
|
|
|
RUN yum -y install \
|
|
openstack-nova-spicehtml5proxy \
|
|
&& yum clean all
|
|
|
|
{% elif base_distro in ['ubuntu'] %}
|
|
|
|
RUN apt-get install -y --no-install-recommends \
|
|
nova-spiceproxy \
|
|
&& apt-get clean
|
|
|
|
{% endif %}
|
|
{% elif install_type == 'source' %}
|
|
|
|
ADD nova-spicehtml5proxy-archive /usr/share/nova-spicehtml5proxy-source
|
|
RUN cd /usr/share && ln -s nova-spicehtml5proxy-source/* spice-html5
|
|
|
|
{% endif %}
|
|
|
|
{{ include_footer }}
|
|
|
|
USER nova
|