From a2752c68384688eb4121d207055025c43125a94e Mon Sep 17 00:00:00 2001 From: qpismont Date: Thu, 30 Oct 2025 13:46:39 +0100 Subject: [PATCH] Add README.md: Initial commit of My Fedora distribution documentation with features, usage instructions, and project structure --- Containerfile | 60 +++++++++------------------------------------------ 1 file changed, 10 insertions(+), 50 deletions(-) diff --git a/Containerfile b/Containerfile index 6fed5c5..85a4be0 100644 --- a/Containerfile +++ b/Containerfile @@ -9,48 +9,10 @@ RUN curl -fsSL https://repository.mullvad.net/rpm/stable/mullvad.repo -o /etc/yu #Install de gnome avec support hardware + Podman + Cups + Vulkan driver + Plymouth + dev tools + divers utilitaires RUN dnf install -y \ - @base-x \ + @gnome-desktop \ @hardware-support \ @development-tools \ - gnome-initial-setup \ - gdm \ - gnome-shell \ - gnome-session \ - ptyxis \ - nautilus \ - gnome-control-center \ - gnome-settings-daemon \ - gnome-keyring \ - gnome-calculator \ - gnome-clocks \ - gnome-calendar \ - gnome-text-editor \ - gnome-menus \ - ffmpegthumbnailer \ - glycin-thumbnailer \ - gnome-epub-thumbnailer \ - totem-video-thumbnailer \ - papers-nautilus \ - papers \ - loupe \ - sushi \ - gnome-weather \ - snapshot \ - xdg-desktop-portal \ - xdg-desktop-portal-gnome \ - xdg-desktop-portal-gtk \ - xdg-user-dirs \ - xdg-user-dirs-gtk \ - gstreamer1 \ - gstreamer1-plugins-base \ - gstreamer1-plugins-good \ - gstreamer1-plugins-bad-free \ - gstreamer1-plugins-ugly-free \ - gstreamer1-libav \ - gstreamer1-vaapi \ - ffmpeg \ code \ - glibc-langpack-fr \ flatpak \ buildah \ podman \ @@ -58,18 +20,9 @@ RUN dnf install -y \ podman-compose \ fuse-overlayfs \ cups \ - dconf \ + cups-pdf \ jq \ htop \ - cups-pdf \ - vulkan-loader \ - vulkan-tools \ - mesa-vulkan-drivers \ - mesa-dri-drivers \ - mesa-libEGL \ - mesa-va-drivers \ - libva-utils \ - xorg-x11-drv-amdgpu \ plymouth \ plymouth-system-theme \ plymouth-plugin-label \ @@ -82,7 +35,11 @@ RUN dnf install -y \ evtest \ libusb \ usbutils \ - && dnf remove -y gnome-software gnome-software-rpm-ostree || true \ + gstreamer1-plugins-ugly-free \ + gstreamer1-libav \ + ffmpeg \ + xorg-x11-server-Xwayland \ + && dnf remove -y gnome-software gnome-software-rpm-ostree gnome-system-monitor showtime decibels snapshot || true \ && dnf clean all \ && rm -rf /var/cache/dnf @@ -129,6 +86,9 @@ RUN mkdir -p /etc/dconf/db/local.d /etc/dconf/profile && \ #Activation du module xpad pour support manette xbox RUN echo "xpad" > /etc/modules-load.d/xpad.conf +#Configuration gstreamer pour désactiver tous les drivers vaapi par défaut (évite des conflits avec certains drivers propriétaires) +RUN echo "GST_VAAPI_ALL_DRIVERS=0" >> /etc/environment + # Ajout de flathub avec des apps par défaut RUN flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo \ && flatpak install -y --system flathub runtime/org.gnome.Platform/x86_64/49 \