Make novnc proxy work on Icehouse

Icehosue websockify is incompatible with 0.6.0 which comes from
the default repos.  Manually remove it in the novnc container and
install websockify 0.5.1 from koji.

Change-Id: I62435f0bc51773cebadf95184278af64f0c2847b
This commit is contained in:
Steven Dake 2015-05-09 15:21:35 -07:00
parent e18d30ae64
commit 5d0a7f575e
1 changed files with 4 additions and 0 deletions

View File

@ -5,6 +5,10 @@ RUN yum -y install \
novnc openstack-nova-novncproxy && \
yum clean all
RUN rpm -e --nodeps python-websockify
RUN yum -y install https://kojipkgs.fedoraproject.org//packages/python-websockify/0.5.1/1.el7/noarch/python-websockify-0.5.1-1.el7.noarch.rpm
ADD start.sh /start.sh
CMD ["/start.sh"]