3ef57a9ed6
Updates to ensure commands run in the nova containers are done as the 'nova' user rather than root. Change-Id: I0dd0276c2848ad77d92d350dfa0f20161329ed55 Partially-Implements: blueprint drop-root
23 lines
509 B
Django/Jinja
23 lines
509 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
|
|
|
|
{% endif %}
|
|
{% elif install_type == 'source' %}
|
|
|
|
ADD nova-novncproxy-archive /usr/share/nova-novncproxy-source
|
|
RUN cd /usr/share && ln -s nova-novncproxy-source/* novnc
|
|
|
|
{% endif %}
|
|
|
|
{{ include_footer }}
|
|
|
|
USER nova
|