-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathDockerfile
More file actions
27 lines (21 loc) · 773 Bytes
/
Dockerfile
File metadata and controls
27 lines (21 loc) · 773 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
FROM registry.fedoraproject.org/fedora:43
RUN dnf -y update && \
dnf -y install \
git curl unzip which procps-ng psmisc findutils \
java-21-openjdk-devel \
# X + desktop
xorg-x11-server-Xvfb xterm dbus-x11 \
xfce4-session xfce4-panel xfce4-settings xfce4-terminal thunar \
xfwm4 \
feh \
# VNC + web VNC
x11vnc novnc python3-websockify \
# OpenGL (Mesa) + GLVND + tools (glxinfo)
mesa-dri-drivers mesa-libGL mesa-libEGL mesa-libGLU \
libglvnd-glx libglvnd-egl \
glx-utils \
&& dnf clean all
RUN dnf -y install weston xorg-x11-server-Xwayland wayland-utils \
&& dnf clean all
COPY assets/wallpaper.jpg /root/wallpaper.jpg
COPY assets/novnc-index.html /usr/share/novnc/index.html