-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile
More file actions
32 lines (28 loc) · 680 Bytes
/
Copy pathDockerfile
File metadata and controls
32 lines (28 loc) · 680 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
FROM ubuntu:rolling
RUN set -ex; \
apt-get update; \
apt-get install --no-install-recommends -y \
bash \
git \
net-tools \
novnc \
supervisor \
x11vnc \
xterm \
fluxbox \
xvfb; \
git clone https://github.com/aarsht7/novnc-docker; \
chmod +x /novnc-docker/app/entrypoint.sh; \
rm -rf /var/lib/apt/lists/*
ENV HOME=/root \
DEBIAN_FRONTEND=noninteractive \
LANG=en_US.UTF-8 \
LANGUAGE=en_US.UTF-8 \
LC_ALL=C.UTF-8 \
DISPLAY=:0.0 \
DISPLAY_WIDTH=1024 \
DISPLAY_HEIGHT=768 \
RUN_XTERM=yes \
RUN_FLUXBOX=yes
CMD ["/novnc-docker/app/entrypoint.sh"]
EXPOSE 8080