1
0
mirror of https://github.com/fcwu/docker-ubuntu-vnc-desktop synced 2026-08-05 16:12:41 +02:00

NoVNC default connect

This commit is contained in:
DoroWu
2014-03-12 00:18:40 +08:00
parent 6a93d725c5
commit 54ece84361
2 changed files with 22 additions and 8 deletions
+7 -8
View File
@@ -2,7 +2,6 @@ FROM ubuntu:12.04
MAINTAINER Doro Wu <fcwu.tw@gmail.com>
ENV DEBIAN_FRONTEND noninteractive
ENV HTTP_PROXY http://172.17.42.1:3134
# setup our Ubuntu sources (ADD breaks caching)
RUN echo "deb http://us.archive.ubuntu.com/ubuntu/ precise main\n\
@@ -16,16 +15,16 @@ deb http://us.archive.ubuntu.com/ubuntu/ precise restricted\n\
RUN apt-mark hold initscripts udev plymouth mountall
RUN dpkg-divert --local --rename --add /sbin/initctl && ln -s /bin/true /sbin/initctl
RUN apt-get update
RUN HTTP_PROXY=http://172.17.42.1:3142 apt-get update
# install our "base" environment
RUN apt-get install -y --no-install-recommends openssh-server pwgen sudo vim-tiny
RUN apt-get install -y --no-install-recommends lxde
RUN apt-get install -y --no-install-recommends x11vnc xvfb
RUN apt-get install -y supervisor
RUN apt-get install -y libreoffice firefox
RUN HTTP_PROXY=http://172.17.42.1:3142 apt-get install -y --no-install-recommends openssh-server pwgen sudo vim-tiny
RUN HTTP_PROXY=http://172.17.42.1:3142 apt-get install -y --no-install-recommends lxde
RUN HTTP_PROXY=http://172.17.42.1:3142 apt-get install -y --no-install-recommends x11vnc xvfb
RUN HTTP_PROXY=http://172.17.42.1:3142 apt-get install -y supervisor
RUN HTTP_PROXY=http://172.17.42.1:3142 apt-get install -y libreoffice firefox
# noVNC
RUN apt-get install -y net-tools
RUN HTTP_PROXY=http://172.17.42.1:3142 apt-get install -y net-tools
ADD startup.sh /
ADD supervisord.conf /