Enhance Containerfile: Add DMS and Niri repositories for improved package management and support
Some checks failed
ci/woodpecker/push/ci Pipeline failed

This commit is contained in:
2025-12-11 20:05:37 +01:00
parent 0bcb79455c
commit 1dcbd972b2

View File

@@ -7,6 +7,12 @@ RUN rpm --import https://packages.microsoft.com/keys/microsoft.asc \
#Ajout du dépot mullvad
RUN curl -fsSL https://repository.mullvad.net/rpm/stable/mullvad.repo -o /etc/yum.repos.d/mullvad.repo
#Ajout du dépot avengemedia pour DMS (DankMaterialShell)
RUN dnf copr enable avengemedia/dms -y
#Ajout du dépot Niri desktop
RUN dnf copr enable yalter/niri -y
#Install de gnome avec support hardware + Podman + Cups + Vulkan driver + Plymouth + dev tools + divers utilitaires
RUN dnf install -y \
@gnome-desktop \
@@ -19,6 +25,8 @@ RUN dnf install -y \
vulkan-loader.i686 \
vulkan-tools \
cabextract \
niri \
dms \
glibc-langpack-fr \
langpacks-core-fr \
langpacks-fr \
@@ -109,6 +117,9 @@ RUN flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flath
#Définir le target graphique par défaut
RUN systemctl set-default graphical.target
#Ajout de niri comme dépendance de DMS
RUN systemctl --user add-wants niri.service dms
#Activation des services + Desactivation de bootc-update automatique
RUN systemctl preset-all && \
systemctl enable gdm.service NetworkManager.service bluetooth.service podman.socket cups.service mullvad-daemon.service && \