-
Notifications
You must be signed in to change notification settings - Fork 327
/
Copy pathDockerfile
30 lines (23 loc) · 1002 Bytes
/
Dockerfile
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
ARG base
FROM ${base}
# Dazzle does not rebuild a layer until one of its lines are changed. Increase this counter to rebuild this layer.
ENV TRIGGER_REBUILD=1
USER root
# Install Desktop-ENV, tools
RUN install-packages \
tigervnc-standalone-server tigervnc-xorg-extension \
dbus dbus-x11 gnome-keyring xfce4 xfce4-terminal \
xdg-utils x11-xserver-utils pip
# Install novnc and numpy module for it
RUN git clone --depth 1 https://github.com/novnc/noVNC.git /opt/novnc \
&& git clone --depth 1 https://github.com/novnc/websockify /opt/novnc/utils/websockify \
&& find /opt/novnc -type d -name '.git' -exec rm -rf '{}' + \
&& sudo -H pip3 install numpy
COPY novnc-index.html /opt/novnc/index.html
COPY gp-vncsession /usr/bin/
# Add VNC startup script
RUN printf 'export DISPLAY=:%s\n' '0' > "$HOME/.bashrc.d/1000-vnc" \
&& printf '%s\n' 'test -e "${GITPOD_REPO_ROOT:-}" && gp-vncsession' > "$HOME/.runonce/1000-vnc"
# Add X11 dotfiles
COPY --chown=gitpod:gitpod .xinitrc $HOME/
USER gitpod