From 9a0c7ea4c15138ca4f3816fec126b9cb611a63bd Mon Sep 17 00:00:00 2001 From: Sean Payne Date: Sun, 17 May 2015 01:49:06 -0700 Subject: [PATCH] Added dependency on websockify. Eliminates the re-download of websockify on each launch of the container. --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index bb446e2..7f72df4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,6 +8,8 @@ ADD startup.sh /startup.sh RUN apt-get update -y && \ apt-get install -y git x11vnc wget python python-numpy unzip Xvfb firefox openbox geany menu && \ cd /root && git clone https://github.com/kanaka/noVNC.git && \ + cd noVNC/utils && git clone https://github.com/kanaka/websockify websockify && \ + cd /root && \ chmod 0755 /startup.sh && \ apt-get autoclean && \ apt-get autoremove && \