forked from selkies-project/docker-nvidia-glx-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
391 lines (373 loc) · 13.7 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
# Ubuntu release versions 22.04, 20.04, and 18.04 are supported
ARG UBUNTU_RELEASE=22.04
ARG CUDA_VERSION=11.7.1
FROM nvcr.io/nvidia/cuda:${CUDA_VERSION}-runtime-ubuntu${UBUNTU_RELEASE}
LABEL maintainer "https://github.com/ehfd,https://github.com/danisla"
ARG UBUNTU_RELEASE
ARG CUDA_VERSION
# Make all NVIDIA GPUs visible by default
ARG NVIDIA_VISIBLE_DEVICES=all
# Use noninteractive mode to skip confirmation when installing packages
ARG DEBIAN_FRONTEND=noninteractive
# All NVIDIA driver capabilities should preferably be used, check `NVIDIA_DRIVER_CAPABILITIES` inside the container if things do not work
ENV NVIDIA_DRIVER_CAPABILITIES all
# Enable AppImage execution in a container
ENV APPIMAGE_EXTRACT_AND_RUN 1
# System defaults that should not be changed
ENV DISPLAY :0
ENV XDG_RUNTIME_DIR /tmp/runtime-user
ENV PULSE_SERVER unix:/run/pulse/native
ENV LD_LIBRARY_PATH /usr/lib/x86_64-linux-gnu:/usr/lib/i386-linux-gnu${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
# Default environment variables (password is "mypasswd")
ENV TZ UTC
ENV SIZEW 1920
ENV SIZEH 1080
ENV REFRESH 60
ENV DPI 96
ENV CDEPTH 24
ENV VIDEO_PORT DFP
ENV PASSWD mypasswd
ENV NOVNC_ENABLE false
ENV WEBRTC_ENCODER nvh264enc
ENV WEBRTC_ENABLE_RESIZE false
ENV ENABLE_AUDIO true
ENV ENABLE_BASIC_AUTH true
# Set versions for components that should be manually checked before upgrading, other component versions are automatically determined by fetching the version online
ARG NOVNC_VERSION=1.3.0
# Install locales to prevent X11 errors
RUN apt-get clean && \
apt-get update && apt-get install --no-install-recommends -y locales && \
rm -rf /var/lib/apt/lists/* && \
locale-gen en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
# Install Xorg and other important libraries or packages
RUN dpkg --add-architecture i386 && \
apt-get update && apt-get install --no-install-recommends -y \
software-properties-common \
alsa-base \
alsa-utils \
apt-transport-https \
apt-utils \
build-essential \
ca-certificates \
cups-filters \
cups-common \
cups-pdf \
curl \
file \
wget \
bzip2 \
gzip \
p7zip-full \
xz-utils \
zip \
unzip \
zstd \
gcc \
git \
jq \
make \
python3 \
python3-cups \
python3-numpy \
mlocate \
nano \
vim \
htop \
fonts-dejavu-core \
fonts-freefont-ttf \
fonts-noto \
fonts-noto-cjk \
fonts-noto-cjk-extra \
fonts-noto-color-emoji \
fonts-noto-hinted \
fonts-noto-mono \
fonts-opensymbol \
fonts-symbola \
fonts-ubuntu \
libpulse0 \
pulseaudio \
supervisor \
net-tools \
libglvnd-dev \
libglvnd-dev:i386 \
libgl1-mesa-dev \
libgl1-mesa-dev:i386 \
libegl1-mesa-dev \
libegl1-mesa-dev:i386 \
libgles2-mesa-dev \
libgles2-mesa-dev:i386 \
libglvnd0 \
libglvnd0:i386 \
libgl1 \
libgl1:i386 \
libglx0 \
libglx0:i386 \
libegl1 \
libegl1:i386 \
libgles2 \
libgles2:i386 \
libglu1 \
libglu1:i386 \
libsm6 \
libsm6:i386 \
vainfo \
vdpauinfo \
pkg-config \
mesa-utils \
mesa-utils-extra \
va-driver-all \
xserver-xorg-input-all \
xserver-xorg-video-all \
mesa-vulkan-drivers \
libvulkan-dev \
libvulkan-dev:i386 \
libxau6 \
libxau6:i386 \
libxdmcp6 \
libxdmcp6:i386 \
libxcb1 \
libxcb1:i386 \
libxext6 \
libxext6:i386 \
libx11-6 \
libx11-6:i386 \
libxv1 \
libxv1:i386 \
libxtst6 \
libxtst6:i386 \
xdg-utils \
dbus-x11 \
libdbus-c++-1-0v5 \
xkb-data \
x11-xkb-utils \
x11-xserver-utils \
x11-utils \
x11-apps \
xauth \
xbitmaps \
xinit \
xfonts-base \
libxrandr-dev \
# Install essential Xorg and NVIDIA packages, packages above this line should be the same between docker-nvidia-glx-desktop and docker-nvidia-egl-desktop
kmod \
libc6-dev \
libc6:i386 \
libpci3 \
libelf-dev \
xorg && \
# Install Vulkan utilities
if [ "${UBUNTU_RELEASE}" \< "20.04" ]; then apt-get install --no-install-recommends -y vulkan-utils; else apt-get install --no-install-recommends -y vulkan-tools; fi && \
rm -rf /var/lib/apt/lists/* && \
# Configure EGL manually
mkdir -p /usr/share/glvnd/egl_vendor.d/ && \
echo "{\n\
\"file_format_version\" : \"1.0.0\",\n\
\"ICD\": {\n\
\"library_path\": \"libEGL_nvidia.so.0\"\n\
}\n\
}" > /usr/share/glvnd/egl_vendor.d/10_nvidia.json
# Anything below this line should be always kept the same between docker-nvidia-glx-desktop and docker-nvidia-egl-desktop
# Install KDE and other GUI packages
ENV XDG_CURRENT_DESKTOP KDE
ENV KWIN_COMPOSE N
# Use sudoedit to change protected files instead of using sudo on kate
ENV SUDO_EDITOR kate
RUN mkdir -pm755 /etc/apt/preferences.d && \
echo "Package: firefox*\n\
Pin: release o=Ubuntu*\n\
Pin-Priority: -1" > /etc/apt/preferences.d/firefox-ppa && \
add-apt-repository -y ppa:mozillateam/ppa && \
apt-get update && apt-get install --no-install-recommends -y \
kde-plasma-desktop \
kwin-addons \
kwin-x11 \
kdeadmin \
akregator \
ark \
baloo-kf5 \
breeze-cursor-theme \
breeze-icon-theme \
debconf-kde-helper \
colord-kde \
desktop-file-utils \
filelight \
gwenview \
hspell \
kaddressbook \
kaffeine \
kate \
kcalc \
kcharselect \
kdeconnect \
kde-spectacle \
kdf \
kget \
kgpg \
khelpcenter \
khotkeys \
kimageformat-plugins \
kinfocenter \
kio-extras \
kleopatra \
kmail \
kmenuedit \
kmix \
knotes \
kontact \
kopete \
korganizer \
krdc \
ktimer \
kwalletmanager \
librsvg2-common \
okular \
okular-extra-backends \
plasma-dataengines-addons \
plasma-discover \
plasma-runners-addons \
plasma-wallpapers-addons \
plasma-widgets-addons \
plasma-workspace-wallpapers \
qtvirtualkeyboard-plugin \
sonnet-plugins \
sweeper \
systemsettings \
xdg-desktop-portal-kde \
kubuntu-restricted-extras \
kubuntu-wallpapers \
firefox \
pavucontrol-qt \
transmission-qt && \
apt-get install --install-recommends -y \
libreoffice \
libreoffice-style-breeze && \
rm -rf /var/lib/apt/lists/* && \
# Fix KDE startup permissions issues in containers
cp -f /usr/lib/x86_64-linux-gnu/libexec/kf5/start_kdeinit /tmp/ && \
rm -f /usr/lib/x86_64-linux-gnu/libexec/kf5/start_kdeinit && \
cp -r /tmp/start_kdeinit /usr/lib/x86_64-linux-gnu/libexec/kf5/start_kdeinit && \
rm -f /tmp/start_kdeinit
# Wine, Winetricks, Lutris, and PlayOnLinux, this process must be consistent with https://wiki.winehq.org/Ubuntu
ARG WINE_BRANCH=staging
RUN if [ "${UBUNTU_RELEASE}" \< "20.04" ]; then add-apt-repository -y ppa:cybermax-dexter/sdl2-backport; fi && \
mkdir -pm755 /etc/apt/keyrings && curl -fsSL -o /etc/apt/keyrings/winehq-archive.key "https://dl.winehq.org/wine-builds/winehq.key" && \
curl -fsSL -o "/etc/apt/sources.list.d/winehq-$(grep VERSION_CODENAME= /etc/os-release | cut -d= -f2).sources" "https://dl.winehq.org/wine-builds/ubuntu/dists/$(grep VERSION_CODENAME= /etc/os-release | cut -d= -f2)/winehq-$(grep VERSION_CODENAME= /etc/os-release | cut -d= -f2).sources" && \
apt-get update && apt-get install --install-recommends -y \
winehq-${WINE_BRANCH} && \
apt-get install --no-install-recommends -y \
q4wine \
playonlinux && \
LUTRIS_VERSION=$(curl -fsSL "https://api.github.com/repos/lutris/lutris/releases/latest" | jq -r '.tag_name' | sed 's/[^0-9\.\-]*//g') && \
curl -fsSL -O "https://github.com/lutris/lutris/releases/download/v${LUTRIS_VERSION}/lutris_${LUTRIS_VERSION}_all.deb" && \
apt-get install --no-install-recommends -y ./lutris_${LUTRIS_VERSION}_all.deb && rm -f "./lutris_${LUTRIS_VERSION}_all.deb" && \
rm -rf /var/lib/apt/lists/* && \
curl -fsSL -o /usr/bin/winetricks "https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks" && \
chmod 755 /usr/bin/winetricks && \
curl -fsSL -o /usr/share/bash-completion/completions/winetricks "https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks.bash-completion"
# Install latest selkies-gstreamer (https://github.com/selkies-project/selkies-gstreamer) build, Python application, and web application, should be consistent with selkies-gstreamer documentation
RUN apt-get update && apt-get install --no-install-recommends -y \
build-essential \
python3-pip \
python3-dev \
python3-gi \
python3-setuptools \
python3-wheel \
tzdata \
sudo \
udev \
xclip \
x11-utils \
xdotool \
wmctrl \
jq \
gdebi-core \
x11-xserver-utils \
xserver-xorg-core \
libopus0 \
libgdk-pixbuf2.0-0 \
libsrtp2-1 \
libxdamage1 \
libxml2-dev \
libwebrtc-audio-processing1 \
libcairo-gobject2 \
pulseaudio \
libpulse0 \
libpangocairo-1.0-0 \
libgirepository1.0-dev \
libjpeg-dev \
libvpx-dev \
zlib1g-dev \
x264 && \
if [ "${UBUNTU_RELEASE}" \> "20.04" ]; then apt-get install --no-install-recommends -y xcvt; fi && \
rm -rf /var/lib/apt/lists/* && \
cd /opt && \
# Automatically fetch the latest selkies-gstreamer version and install the components
SELKIES_VERSION=$(curl -fsSL "https://api.github.com/repos/selkies-project/selkies-gstreamer/releases/latest" | jq -r '.tag_name' | sed 's/[^0-9\.\-]*//g') && \
curl -fsSL "https://github.com/selkies-project/selkies-gstreamer/releases/download/v${SELKIES_VERSION}/selkies-gstreamer-v${SELKIES_VERSION}-ubuntu${UBUNTU_RELEASE}.tgz" | tar -zxf - && \
curl -O -fsSL "https://github.com/selkies-project/selkies-gstreamer/releases/download/v${SELKIES_VERSION}/selkies_gstreamer-${SELKIES_VERSION}-py3-none-any.whl" && pip3 install "selkies_gstreamer-${SELKIES_VERSION}-py3-none-any.whl" && rm -f "selkies_gstreamer-${SELKIES_VERSION}-py3-none-any.whl" && \
curl -fsSL "https://github.com/selkies-project/selkies-gstreamer/releases/download/v${SELKIES_VERSION}/selkies-gstreamer-web-v${SELKIES_VERSION}.tgz" | tar -zxf - && \
cd /usr/local/cuda/lib64 && sudo find . -maxdepth 1 -type l -name "*libnvrtc.so.*" -exec sh -c 'ln -snf $(basename {}) libnvrtc.so' \;
# Install the noVNC web interface and the latest x11vnc for fallback
RUN apt-get update && apt-get install --no-install-recommends -y \
autoconf \
automake \
autotools-dev \
chrpath \
debhelper \
git \
jq \
python3 \
python3-numpy \
libc6-dev \
libcairo2-dev \
libjpeg-turbo8-dev \
libssl-dev \
libv4l-dev \
libvncserver-dev \
libtool-bin \
libxdamage-dev \
libxinerama-dev \
libxrandr-dev \
libxss-dev \
libxtst-dev \
libavahi-client-dev && \
rm -rf /var/lib/apt/lists/* && \
# Build the latest x11vnc source to avoid various errors
git clone "https://github.com/LibVNC/x11vnc.git" /tmp/x11vnc && \
cd /tmp/x11vnc && autoreconf -fi && ./configure && make install && cd / && rm -rf /tmp/* && \
curl -fsSL "https://github.com/novnc/noVNC/archive/v${NOVNC_VERSION}.tar.gz" | tar -xzf - -C /opt && \
mv -f "/opt/noVNC-${NOVNC_VERSION}" /opt/noVNC && \
ln -snf /opt/noVNC/vnc.html /opt/noVNC/index.html && \
# Use the latest Websockify source to expose noVNC
git clone "https://github.com/novnc/websockify.git" /opt/noVNC/utils/websockify
# Add custom packages right below this comment, or use FROM in a new container and replace entrypoint.sh or supervisord.conf, and set ENTRYPOINT to /usr/bin/supervisord
# Create user with password ${PASSWD} and assign adequate groups
RUN apt-get update && apt-get install --no-install-recommends -y \
sudo && \
rm -rf /var/lib/apt/lists/* && \
groupadd -g 1000 user && \
useradd -ms /bin/bash user -u 1000 -g 1000 && \
usermod -a -G adm,audio,cdrom,dialout,dip,fax,floppy,input,lp,lpadmin,plugdev,pulse-access,scanner,sudo,tape,tty,video,voice user && \
echo "user ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers && \
chown user:user /home/user && \
echo "user:${PASSWD}" | chpasswd && \
ln -snf "/usr/share/zoneinfo/$TZ" /etc/localtime && echo "$TZ" > /etc/timezone
# Copy scripts and configurations used to start the container
COPY entrypoint.sh /etc/entrypoint.sh
RUN chmod 755 /etc/entrypoint.sh
COPY selkies-gstreamer-entrypoint.sh /etc/selkies-gstreamer-entrypoint.sh
RUN chmod 755 /etc/selkies-gstreamer-entrypoint.sh
COPY supervisord.conf /etc/supervisord.conf
RUN chmod 755 /etc/supervisord.conf
EXPOSE 8080
USER user
ENV SHELL /bin/bash
ENV USER user
WORKDIR /home/user
ENTRYPOINT ["/usr/bin/supervisord"]