From 7172fc64c88c944def968b7a148f832598caa7f1 Mon Sep 17 00:00:00 2001 From: qpismont Date: Wed, 4 Mar 2026 09:12:14 +0100 Subject: [PATCH] Remove DMS and Niri repository configurations from Containerfile and clean up package installations --- Containerfile | 20 ++++---------------- 1 file changed, 4 insertions(+), 16 deletions(-) diff --git a/Containerfile b/Containerfile index 5bea8ba..395e247 100644 --- a/Containerfile +++ b/Containerfile @@ -7,14 +7,6 @@ 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 install -y 'dnf5-command(copr)' \ - && dnf copr enable avengemedia/dms -y \ - && dnf copr enable avengemedia/danklinux -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 \ @@ -24,13 +16,9 @@ RUN dnf install -y \ vulkan-tools \ mesa-vulkan-drivers \ mesa-vulkan-drivers.i686 \ - vulkan-loader \ - vulkan-loader.i686 \ + vulkan-loader \ + vulkan-loader.i686 \ vulkan-tools \ - gamescope \ - niri \ - dsearch \ - dms \ glibc-langpack-fr \ langpacks-core-fr \ langpacks-fr \ @@ -61,11 +49,11 @@ RUN dnf install -y \ gstreamer1-plugins-base \ gstreamer1-vaapi \ ffmpeg \ - xorg-x11-server-Xwayland \ - && dnf remove -y alacritty waybar gnome-software gnome-software-rpm-ostree gnome-system-monitor showtime decibels snapshot PackageKit PackageKit-gstreamer-plugin PackageKit-command-not-found toolbox || true \ + && dnf remove -y gnome-software gnome-software-rpm-ostree gnome-system-monitor showtime decibels snapshot PackageKit PackageKit-gstreamer-plugin PackageKit-command-not-found toolbox || true \ && dnf clean all \ && rm -rf /var/cache/dnf + #Installation de Filen Desktop RUN wget https://cdn.filen.io/@filen/desktop/release/latest/Filen_linux_x86_64.rpm -O /tmp/filen.rpm \ && dnf install -y /tmp/filen.rpm \