d3c60d0035
Change-Id: I7556d6cd473516c7ceb4aba7c1ba1130af2544ee Partially-implements: blueprint third-party-plugin-support
37 lines
937 B
Django/Jinja
37 lines
937 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}nova-base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% if install_type == 'binary' %}
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
|
|
|
{% set nova_spicehtml5proxy_packages = [
|
|
'openstack-nova-spicehtml5proxy',
|
|
'spice-html5'
|
|
] %}
|
|
|
|
{% elif base_distro in ['ubuntu'] %}
|
|
|
|
{% set nova_spicehtml5proxy_packages = [
|
|
'nova-spiceproxy'
|
|
] %}
|
|
|
|
{% endif %}
|
|
|
|
{{ macros.install_packages(nova_spicehtml5proxy_packages | customizable("packages")) }}
|
|
|
|
{% 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 %}
|
|
|
|
{% block nova_spicehtml5proxy_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|
|
{{ include_footer }}
|
|
|
|
USER nova
|