a7d4431928
Change-Id: I0ca15e00ee52373b84f7021d86a29304526b7436 Partially-Implements: blueprint nova-proxies
19 lines
561 B
Django/Jinja
19 lines
561 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}nova-base:{{ tag }}
|
|
MAINTAINER Kolla Project (https://launchpad.net/kolla)
|
|
|
|
{% if install_type == 'binary' %}
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
|
|
|
RUN echo 'ERROR: The specified distro has no Kolla images to build: "{{ base_distro }}"' \
|
|
&& /bin/false
|
|
|
|
{% 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 }}
|