Files
docker-wohnungsbot/Dockerfile
Sean Payne 9a0c7ea4c1 Added dependency on websockify.
Eliminates the re-download of websockify on each launch of the container.
2015-05-17 01:49:06 -07:00

20 lines
563 B
Docker

FROM ubuntu:trusty
MAINTAINER paimpozhil@gmail.com
ENV DEBIAN_FRONTEND noninteractive
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 && \
rm -rf /var/lib/apt/lists/*
CMD /startup.sh
EXPOSE 6080