Dockerfile 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602
  1. # syntax=docker/dockerfile:1.7
  2. # =============================================================================
  3. # Versions
  4. # =============================================================================
  5. # Update these values whenever the NVIDIA GPU Operator driver changes.
  6. ARG NVIDIA_DRIVER_BRANCH=580
  7. ARG NVIDIA_DRIVER_VERSION=580.126.20
  8. ARG NVIDIA_DRIVER_PACKAGE_VERSION=580.126.20-1ubuntu1
  9. ARG SUNSHINE_REF=0784774
  10. ARG BUILD_DEPS_VERSION=v2026.724.203728
  11. ARG NV_CODEC_HEADERS_VERSION=n13.0.19.1
  12. # ============================================================================
  13. # Build du FFmpeg utilisé par Sunshine
  14. # nv-codec-headers volontairement limité à NVENC API 13.0
  15. # ============================================================================
  16. FROM docker.io/library/ubuntu:24.04 AS ffmpeg-build
  17. ARG BUILD_DEPS_VERSION
  18. ARG NV_CODEC_HEADERS_VERSION
  19. ENV DEBIAN_FRONTEND=noninteractive
  20. RUN apt-get update && \
  21. apt-get install -y --no-install-recommends \
  22. autoconf \
  23. automake \
  24. build-essential \
  25. ca-certificates \
  26. cmake \
  27. git \
  28. libass-dev \
  29. libfreetype6-dev \
  30. libgnutls28-dev \
  31. libmp3lame-dev \
  32. libnuma-dev \
  33. libopus-dev \
  34. libsdl2-dev \
  35. libtool \
  36. libvorbis-dev \
  37. libxcb1-dev \
  38. libxcb-shm0-dev \
  39. libxcb-xfixes0-dev \
  40. libx11-xcb-dev \
  41. libxcb-dri3-dev \
  42. make \
  43. meson \
  44. nasm \
  45. ninja-build \
  46. pkg-config \
  47. texinfo \
  48. wget \
  49. zlib1g-dev && \
  50. rm -rf /var/lib/apt/lists/*
  51. RUN git clone \
  52. --branch "${BUILD_DEPS_VERSION}" \
  53. --depth 1 \
  54. --recurse-submodules \
  55. https://github.com/LizardByte/build-deps.git \
  56. /src/build-deps
  57. # Le point important :
  58. # on remplace les nv-codec-headers utilisés pour compiler FFmpeg
  59. # par la dernière release API 13.0.
  60. RUN rm -rf /src/build-deps/third-party/FFmpeg/nv-codec-headers && \
  61. git clone \
  62. --branch "${NV_CODEC_HEADERS_VERSION}" \
  63. --depth 1 \
  64. https://github.com/FFmpeg/nv-codec-headers.git \
  65. /src/build-deps/third-party/FFmpeg/nv-codec-headers
  66. RUN cmake \
  67. -S /src/build-deps \
  68. -B /src/build-deps/build \
  69. -G "Unix Makefiles" \
  70. -DCMAKE_BUILD_TYPE=Release \
  71. -DCMAKE_INSTALL_PREFIX=/opt/build-deps \
  72. -DBUILD_ALL=OFF \
  73. -DBUILD_FFMPEG=ON \
  74. -DBUILD_FFMPEG_NV_CODEC_HEADERS=ON \
  75. -DBUILD_FFMPEG_CUDA_LLVM=OFF \
  76. -DBUILD_TESTS=OFF \
  77. -DBUILD_DOCS=OFF && \
  78. cmake --build /src/build-deps/build --parallel "$(nproc)" && \
  79. cmake --install /src/build-deps/build
  80. # ============================================================================
  81. # Build de Sunshine avec notre FFmpeg
  82. # ============================================================================
  83. FROM docker.io/nvidia/cuda:12.9.1-devel-ubuntu24.04 AS sunshine-build
  84. ARG SUNSHINE_REF
  85. ENV DEBIAN_FRONTEND=noninteractive
  86. RUN apt-get update && \
  87. apt-get install -y --no-install-recommends \
  88. ca-certificates \
  89. git && \
  90. rm -rf /var/lib/apt/lists/*
  91. RUN git clone \
  92. --filter=blob:none \
  93. https://github.com/LizardByte/Sunshine.git \
  94. /src/sunshine && \
  95. cd /src/sunshine && \
  96. git checkout "${SUNSHINE_REF}" && \
  97. git submodule update --init --recursive --depth 1
  98. # Installation des dépendances de compilation de Sunshine.
  99. # --skip-cuda désactive NVFBC/CUDA dans Sunshine, PAS NVENC via FFmpeg.
  100. RUN cd /src/sunshine && \
  101. ./scripts/linux_build.sh \
  102. --sudo-off \
  103. --skip-cuda \
  104. --step=deps
  105. # Remplacement du FFmpeg précompilé de LizardByte par le nôtre.
  106. COPY --from=ffmpeg-build /opt/build-deps/ffmpeg /tmp/custom-ffmpeg
  107. RUN rm -rf \
  108. /src/sunshine/third-party/build-deps/ffmpeg/Linux-x86_64 && \
  109. mkdir -p \
  110. /src/sunshine/third-party/build-deps/ffmpeg/Linux-x86_64 && \
  111. cp -a \
  112. /tmp/custom-ffmpeg/. \
  113. /src/sunshine/third-party/build-deps/ffmpeg/Linux-x86_64/
  114. # Configuration + compilation + création du .deb
  115. RUN cd /src/sunshine && \
  116. ./scripts/linux_build.sh \
  117. --sudo-off \
  118. --step=cmake && \
  119. ./scripts/linux_build.sh \
  120. --sudo-off \
  121. --step=build && \
  122. ./scripts/linux_build.sh \
  123. --sudo-off \
  124. --step=package && \
  125. cp /src/sunshine/build/cpack_artifacts/Sunshine.deb /sunshine.deb
  126. # =============================================================================
  127. # Main image
  128. # =============================================================================
  129. FROM docker.io/library/ubuntu:24.04
  130. ARG NVIDIA_DRIVER_BRANCH
  131. ARG NVIDIA_DRIVER_VERSION
  132. ARG NVIDIA_DRIVER_PACKAGE_VERSION
  133. ARG USER_NAME=ubuntu
  134. ARG USER_UID=1000
  135. ARG USER_GID=1000
  136. ENV DEBIAN_FRONTEND=noninteractive \
  137. HOME=/home/ubuntu \
  138. USER=ubuntu \
  139. DISPLAY=:20 \
  140. DISPLAY_SIZEW=1920 \
  141. DISPLAY_SIZEH=1080 \
  142. DISPLAY_REFRESH=120 \
  143. DISPLAY_DPI=96 \
  144. DISPLAY_CDEPTH=24 \
  145. VIDEO_PORT=HDMI-0 \
  146. TZ=Europe/Paris \
  147. LANG=fr_FR.UTF-8 \
  148. LANGUAGE=fr_FR:fr \
  149. LC_ALL=fr_FR.UTF-8 \
  150. XDG_RUNTIME_DIR=/tmp/runtime-ubuntu \
  151. PIPEWIRE_RUNTIME_DIR=/tmp/runtime-ubuntu \
  152. PULSE_RUNTIME_PATH=/tmp/runtime-ubuntu/pulse \
  153. PULSE_SERVER=unix:/tmp/runtime-ubuntu/pulse/native \
  154. NVIDIA_VISIBLE_DEVICES=all \
  155. NVIDIA_DRIVER_CAPABILITIES=all \
  156. EXPECTED_NVIDIA_DRIVER_VERSION=${NVIDIA_DRIVER_VERSION} \
  157. NVIDIA_I386_PACKAGE_VERSION=${NVIDIA_DRIVER_PACKAGE_VERSION}
  158. SHELL ["/bin/bash", "-o", "pipefail", "-c"]
  159. USER root
  160. # =============================================================================
  161. # Base desktop / gaming environment
  162. # =============================================================================
  163. RUN dpkg --add-architecture i386 \
  164. && apt-get update \
  165. && apt-get install --no-install-recommends -y \
  166. btop fonts-noto-cjk fonts-ubuntu mousepad nano ristretto thunar \
  167. ubuntu-wallpapers \
  168. adwaita-icon-theme \
  169. elementary-xfce-icon-theme \
  170. greybird-gtk-theme \
  171. hicolor-icon-theme \
  172. humanity-icon-theme \
  173. keyboard-configuration \
  174. tango-icon-theme \
  175. xfce4-goodies \
  176. xfce4-notifyd \
  177. xfce4-pulseaudio-plugin \
  178. xfonts-base \
  179. xfonts-scalable \
  180. alsa-utils \
  181. ca-certificates \
  182. curl \
  183. dbus \
  184. dbus-user-session \
  185. dbus-x11 \
  186. file \
  187. fonts-dejavu \
  188. fonts-liberation \
  189. fonts-noto \
  190. fonts-noto-color-emoji \
  191. kmod \
  192. libasound2-plugins \
  193. libcap2-bin \
  194. libegl1 \
  195. libgbm1 \
  196. libgl1 \
  197. libglvnd0 \
  198. libglx0 \
  199. libpciaccess0 \
  200. libpulse0 \
  201. libvulkan1 \
  202. libx11-6 \
  203. libx11-xcb1 \
  204. libxdamage1 \
  205. libxext6 \
  206. libxfixes3 \
  207. libxinerama1 \
  208. libxrandr2 \
  209. libxss1 \
  210. libxtst6 \
  211. locales \
  212. mesa-utils \
  213. pciutils \
  214. pipewire \
  215. pipewire-pulse \
  216. procps \
  217. psmisc \
  218. pulseaudio-utils \
  219. sudo \
  220. supervisor \
  221. tzdata \
  222. udev \
  223. vulkan-tools \
  224. wireplumber \
  225. x11-utils \
  226. x11-xserver-utils \
  227. xauth \
  228. xcvt \
  229. xdg-user-dirs \
  230. xdg-utils \
  231. xfce4 \
  232. xfce4-terminal \
  233. xkb-data \
  234. xserver-xorg-core \
  235. xserver-xorg-input-libinput \
  236. xserver-xorg-legacy \
  237. xz-utils \
  238. && sed -i \
  239. -e 's/^# *fr_FR.UTF-8 UTF-8/fr_FR.UTF-8 UTF-8/' \
  240. -e 's/^# *en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' \
  241. /etc/locale.gen \
  242. && locale-gen \
  243. && apt-get clean \
  244. && rm -rf \
  245. /var/lib/apt/lists/* \
  246. /var/cache/apt/* \
  247. /var/cache/debconf/* \
  248. /tmp/* \
  249. /var/tmp/*
  250. # =============================================================================
  251. # Desktop user
  252. # =============================================================================
  253. RUN set -eux; \
  254. if ! getent group "${USER_GID}" >/dev/null; then \
  255. groupadd --gid "${USER_GID}" "${USER_NAME}"; \
  256. fi; \
  257. if ! id -u "${USER_NAME}" >/dev/null 2>&1; then \
  258. useradd \
  259. --uid "${USER_UID}" \
  260. --gid "${USER_GID}" \
  261. --create-home \
  262. --shell /bin/bash \
  263. "${USER_NAME}"; \
  264. else \
  265. usermod --shell /bin/bash "${USER_NAME}"; \
  266. fi; \
  267. for group in \
  268. audio \
  269. games \
  270. input \
  271. render \
  272. tty \
  273. video; \
  274. do \
  275. getent group "${group}" >/dev/null \
  276. && usermod -aG "${group}" "${USER_NAME}" \
  277. || true; \
  278. done; \
  279. echo "${USER_NAME} ALL=(ALL:ALL) NOPASSWD: ALL" \
  280. > "/etc/sudoers.d/${USER_NAME}"; \
  281. chmod 0440 "/etc/sudoers.d/${USER_NAME}"; \
  282. install \
  283. -d \
  284. -o "${USER_UID}" \
  285. -g "${USER_GID}" \
  286. -m 0700 \
  287. /tmp/runtime-ubuntu; \
  288. install \
  289. -d \
  290. -o "${USER_UID}" \
  291. -g "${USER_GID}" \
  292. /home/${USER_NAME}/.config/sunshine \
  293. /games
  294. # =============================================================================
  295. # NVIDIA repository + nvidia-xconfig
  296. #
  297. # Only the userspace Xorg configuration utility is installed here.
  298. # The kernel driver remains fully managed by the NVIDIA GPU Operator.
  299. # =============================================================================
  300. RUN curl -fsSLO \
  301. https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2404/x86_64/cuda-keyring_1.1-1_all.deb \
  302. && dpkg -i cuda-keyring_1.1-1_all.deb \
  303. && rm -f cuda-keyring_1.1-1_all.deb \
  304. && apt-get update \
  305. && apt-get install --no-install-recommends -y \
  306. "nvidia-xconfig=${NVIDIA_DRIVER_PACKAGE_VERSION}" \
  307. && nvidia-xconfig --version \
  308. && apt-get clean \
  309. && rm -rf \
  310. /var/lib/apt/lists/* \
  311. /var/cache/apt/*
  312. # =============================================================================
  313. # NVIDIA Xorg driver modules
  314. #
  315. # Extract only the Xorg-side NVIDIA modules matching the host driver.
  316. # Do not install the whole amd64 NVIDIA userspace stack with APT.
  317. # =============================================================================
  318. RUN cd /tmp \
  319. && apt-get update \
  320. && apt-get download \
  321. "xserver-xorg-video-nvidia-${NVIDIA_DRIVER_BRANCH}=${NVIDIA_DRIVER_PACKAGE_VERSION}" \
  322. && mkdir -p /tmp/nvidia-xorg \
  323. && dpkg-deb -x \
  324. "xserver-xorg-video-nvidia-${NVIDIA_DRIVER_BRANCH}_${NVIDIA_DRIVER_PACKAGE_VERSION}_amd64.deb" \
  325. /tmp/nvidia-xorg \
  326. && install -D -m 0755 \
  327. /tmp/nvidia-xorg/usr/lib/xorg/modules/drivers/nvidia_drv.so \
  328. /usr/lib/xorg/modules/drivers/nvidia_drv.so \
  329. && cp -a \
  330. /tmp/nvidia-xorg/usr/lib/xorg/modules/extensions/libglxserver_nvidia.so* \
  331. /usr/lib/xorg/modules/extensions/ \
  332. && rm -rf \
  333. /tmp/nvidia-xorg \
  334. /tmp/xserver-xorg-video-nvidia-*.deb \
  335. /var/lib/apt/lists/*
  336. # =============================================================================
  337. # NVIDIA GLVND / Vulkan configuration
  338. #
  339. # Actual 64-bit NVIDIA libraries are injected at runtime by the GPU Operator /
  340. # NVIDIA Container Toolkit.
  341. # =============================================================================
  342. RUN printf '%s\n' \
  343. '/usr/local/nvidia/lib' \
  344. '/usr/local/nvidia/lib64' \
  345. > /etc/ld.so.conf.d/nvidia.conf \
  346. && install -d -m 0755 \
  347. /etc/vulkan/icd.d \
  348. /usr/share/glvnd/egl_vendor.d \
  349. && cat > /etc/vulkan/icd.d/nvidia_icd.json <<'EOF'
  350. {
  351. "file_format_version": "1.0.0",
  352. "ICD": {
  353. "library_path": "libGLX_nvidia.so.0",
  354. "api_version": "1.3.0"
  355. }
  356. }
  357. EOF
  358. RUN cat > /usr/share/glvnd/egl_vendor.d/10_nvidia.json <<'EOF'
  359. {
  360. "file_format_version": "1.0.0",
  361. "ICD": {
  362. "library_path": "libEGL_nvidia.so.0"
  363. }
  364. }
  365. EOF
  366. # =============================================================================
  367. # Sunshine
  368. # =============================================================================
  369. COPY --from=sunshine-build /sunshine.deb /tmp/sunshine.deb
  370. RUN apt-get update \
  371. && apt-get install --no-install-recommends -y \
  372. /tmp/sunshine.deb \
  373. && setcap cap_sys_admin,cap_dac_override=ep \
  374. "$(command -v sunshine)" \
  375. && rm -f /tmp/sunshine.deb \
  376. && apt-get clean \
  377. && rm -rf \
  378. /var/lib/apt/lists/* \
  379. /var/cache/apt/*
  380. # =============================================================================
  381. # Steam + 32-bit Linux gaming runtime
  382. # =============================================================================
  383. RUN dpkg --add-architecture i386 \
  384. && apt-get update \
  385. && apt-get install --no-install-recommends -y \
  386. ca-certificates \
  387. curl \
  388. && curl -fsSL \
  389. https://repo.steampowered.com/steam/archive/stable/steam.gpg \
  390. -o /usr/share/keyrings/steam.gpg \
  391. && printf '%s\n' \
  392. 'deb [arch=amd64,i386 signed-by=/usr/share/keyrings/steam.gpg] https://repo.steampowered.com/steam/ stable steam' \
  393. > /etc/apt/sources.list.d/steam-bootstrap.list \
  394. && apt-get update \
  395. && apt-get install --no-install-recommends -y \
  396. steam-launcher \
  397. steam-libs-amd64 \
  398. steam-libs-i386 \
  399. libegl1:amd64 \
  400. libegl1:i386 \
  401. libgbm1:amd64 \
  402. libgbm1:i386 \
  403. libgl1:amd64 \
  404. libgl1:i386 \
  405. libgl1-mesa-dri:amd64 \
  406. libgl1-mesa-dri:i386 \
  407. libglx-mesa0:amd64 \
  408. libglx-mesa0:i386 \
  409. libvulkan1:amd64 \
  410. libvulkan1:i386 \
  411. xdg-desktop-portal \
  412. xdg-desktop-portal-gtk \
  413. && rm -f /etc/apt/sources.list.d/steam-bootstrap.list \
  414. && apt-get clean \
  415. && rm -rf \
  416. /var/lib/apt/lists/* \
  417. /var/cache/apt/*
  418. # =============================================================================
  419. # Non-snap Firefox
  420. # =============================================================================
  421. RUN install -d -m 0755 /etc/apt/keyrings \
  422. && curl -fsSL https://packages.mozilla.org/apt/repo-signing-key.gpg \
  423. -o /etc/apt/keyrings/packages.mozilla.org.asc \
  424. && echo "deb [signed-by=/etc/apt/keyrings/packages.mozilla.org.asc] https://packages.mozilla.org/apt mozilla main" \
  425. > /etc/apt/sources.list.d/mozilla.list \
  426. && printf '%s\n' \
  427. 'Package: *' \
  428. 'Pin: origin packages.mozilla.org' \
  429. 'Pin-Priority: 1000' \
  430. > /etc/apt/preferences.d/mozilla \
  431. && apt-get update \
  432. && apt-get install --no-install-recommends -y \
  433. firefox \
  434. firefox-l10n-fr \
  435. && apt-get clean
  436. # =============================================================================
  437. # NVIDIA 32-bit userspace
  438. #
  439. # The GPU Operator currently does not provide the compat32 libraries required
  440. # by 32-bit OpenGL applications and Proton/DXVK.
  441. #
  442. # Install the exact userspace version matching the host driver, then keep a
  443. # protected copy under /opt. The NVIDIA runtime can remove/mask the files in
  444. # /usr/lib/i386-linux-gnu when the pod starts; sunshine-entrypoint.sh restores
  445. # them afterwards.
  446. # =============================================================================
  447. RUN dpkg --add-architecture i386 \
  448. && apt-get update \
  449. && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
  450. "libnvidia-common-${NVIDIA_DRIVER_BRANCH}=${NVIDIA_DRIVER_PACKAGE_VERSION}" \
  451. "libnvidia-gpucomp-${NVIDIA_DRIVER_BRANCH}:i386=${NVIDIA_DRIVER_PACKAGE_VERSION}" \
  452. "libnvidia-decode-${NVIDIA_DRIVER_BRANCH}:i386=${NVIDIA_DRIVER_PACKAGE_VERSION}" \
  453. "libnvidia-compute-${NVIDIA_DRIVER_BRANCH}:i386=${NVIDIA_DRIVER_PACKAGE_VERSION}" \
  454. "libnvidia-gl-${NVIDIA_DRIVER_BRANCH}:i386=${NVIDIA_DRIVER_PACKAGE_VERSION}" \
  455. && mkdir -p /opt/nvidia-i386 \
  456. && for file in $( \
  457. dpkg -L \
  458. "libnvidia-gl-${NVIDIA_DRIVER_BRANCH}:i386" \
  459. "libnvidia-compute-${NVIDIA_DRIVER_BRANCH}:i386" \
  460. "libnvidia-decode-${NVIDIA_DRIVER_BRANCH}:i386" \
  461. "libnvidia-gpucomp-${NVIDIA_DRIVER_BRANCH}:i386" \
  462. | grep '^/usr/lib/i386-linux-gnu/' \
  463. | sort -u \
  464. ); do \
  465. if [[ -e "${file}" || -L "${file}" ]]; then \
  466. cp -a --parents "${file}" /opt/nvidia-i386/; \
  467. fi; \
  468. done \
  469. && test -e \
  470. /opt/nvidia-i386/usr/lib/i386-linux-gnu/libGLX_nvidia.so.0 \
  471. && test -e \
  472. "/opt/nvidia-i386/usr/lib/i386-linux-gnu/libnvidia-glcore.so.${NVIDIA_DRIVER_VERSION}" \
  473. && ldconfig \
  474. && apt-get clean \
  475. && rm -rf \
  476. /var/lib/apt/lists/* \
  477. /var/cache/apt/*
  478. # Keep APT package indexes available for Steam's dependency checker.
  479. RUN apt-get update \
  480. && apt-get clean
  481. # =============================================================================
  482. # Runtime scripts
  483. # =============================================================================
  484. COPY desktop-entrypoint.sh /etc/desktop-entrypoint.sh
  485. COPY sunshine-entrypoint.sh /etc/sunshine-entrypoint.sh
  486. COPY supervisord.conf /etc/supervisord.conf
  487. RUN sed -i 's/\r$//' \
  488. /etc/desktop-entrypoint.sh \
  489. /etc/sunshine-entrypoint.sh \
  490. /etc/supervisord.conf \
  491. && chmod 0755 \
  492. /etc/desktop-entrypoint.sh \
  493. /etc/sunshine-entrypoint.sh \
  494. && chmod 0644 \
  495. /etc/supervisord.conf
  496. # =============================================================================
  497. # Final filesystem permissions
  498. # =============================================================================
  499. RUN chown -R \
  500. "${USER_UID}:${USER_GID}" \
  501. "/home/${USER_NAME}" \
  502. /tmp/runtime-ubuntu
  503. # =============================================================================
  504. # Sanity checks
  505. # =============================================================================
  506. RUN command -v \
  507. steam \
  508. && command -v \
  509. nvidia-xconfig \
  510. && command -v \
  511. supervisord \
  512. && command -v \
  513. pipewire \
  514. && command -v \
  515. wireplumber \
  516. && command -v \
  517. Xorg \
  518. && command -v \
  519. xfce4-session \
  520. && test -x \
  521. /etc/sunshine-entrypoint.sh \
  522. && test -x \
  523. /etc/desktop-entrypoint.sh
  524. # =============================================================================
  525. # Runtime
  526. # =============================================================================
  527. USER 1000:1000
  528. WORKDIR /home/ubuntu
  529. STOPSIGNAL SIGTERM
  530. ENTRYPOINT ["/etc/sunshine-entrypoint.sh"]