This is the initial commit

This commit is contained in:
Paimpozhil
2014-08-31 17:25:35 +00:00
parent 7916ed94f5
commit 72fdf599bd
2 changed files with 13 additions and 0 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM ubuntu:trusty
MAINTAINER paimpozhil@gmail.com
RUN apt-get update -y
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get install -y git x11vnc wget python python-numpy unzip Xvfb firefox openbox geany
RUN cd /root && git clone https://github.com/kanaka/noVNC.git
ADD startup.sh /startup.sh
RUN chmod 0755 /startup.sh
CMD /startup.sh
EXPOSE 6080

3
startup.sh Normal file
View File

@@ -0,0 +1,3 @@
#!/bin/bash
x11vnc -create -forever -ncache 10 -ncache_cr &
cd /root/noVNC && ./utils/launch.sh --vnc localhost:5900