e299720eb7
This solves the following issue when using latest noVNC sources for the nova-novncproxy container: OSError: [Errno 13] Permission denied: '/usr/share/novnc' Change-Id: Iea1f3dfcc696f53431e99570019e27cdef4ca5cb Closes-bug: #1593006
31 lines
712 B
Django/Jinja
31 lines
712 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 \
|
|
novnc \
|
|
openstack-nova-novncproxy \
|
|
&& yum clean all
|
|
|
|
{% elif base_distro in ['ubuntu'] %}
|
|
|
|
RUN apt-get -y install --no-install-recommends \
|
|
nova-novncproxy \
|
|
&& apt-get clean
|
|
|
|
{% endif %}
|
|
{% elif install_type == 'source' %}
|
|
|
|
ADD nova-novncproxy-archive /usr/share/nova-novncproxy-source
|
|
RUN cd /usr/share \
|
|
&& ln -s nova-novncproxy-source/* novnc \
|
|
&& chown -R nova: /usr/share/nova-novncproxy-source
|
|
|
|
{% endif %}
|
|
|
|
{{ include_footer }}
|
|
|
|
USER nova
|