This is the initial commit
This commit is contained in:
10
Dockerfile
Normal file
10
Dockerfile
Normal 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
3
startup.sh
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
x11vnc -create -forever -ncache 10 -ncache_cr &
|
||||||
|
cd /root/noVNC && ./utils/launch.sh --vnc localhost:5900
|
||||||
Reference in New Issue
Block a user