Update Containerfile
ci/woodpecker/push/ci Pipeline was successful
ci/woodpecker/cron/ci Pipeline was successful

This commit is contained in:
2026-05-04 20:44:12 +02:00
parent 083c9f3622
commit d9024d4c7b
+20 -7
View File
@@ -3,9 +3,10 @@ FROM registry.fedoraproject.org/fedora-bootc:44
#Ajout du dépot mullvad #Ajout du dépot mullvad
RUN curl -fsSL https://repository.mullvad.net/rpm/stable/mullvad.repo -o /etc/yum.repos.d/mullvad.repo RUN curl -fsSL https://repository.mullvad.net/rpm/stable/mullvad.repo -o /etc/yum.repos.d/mullvad.repo
#Install de gnome avec support hardware + Podman + Cups + Vulkan driver + Plymouth + dev tools + divers utilitaires #Install de gnome avec support hardware + Podman + Cups + Vulkan driver + Plymouth + dev tools + divers utilitaires
RUN dnf install -y \ RUN dnf install -y \
@kde-desktop-environment \ @gnome-desktop \
@hardware-support \ @hardware-support \
@development-tools \ @development-tools \
@multimedia \ @multimedia \
@@ -16,16 +17,15 @@ RUN dnf install -y \
vulkan-loader.i686 \ vulkan-loader.i686 \
vulkan-tools \ vulkan-tools \
glibc-langpack-fr \ glibc-langpack-fr \
yaru-theme \
langpacks-core-fr \ langpacks-core-fr \
langpacks-fr \ langpacks-fr \
distrobox \ distrobox \
buildah \ buildah \
podman \ podman \
docker-cli \
rsync \ rsync \
podman-docker \
mullvad-vpn \ mullvad-vpn \
plasma-login-manager \
kcm-plasmalogin \
podman-compose \ podman-compose \
fuse-overlayfs \ fuse-overlayfs \
cups \ cups \
@@ -46,11 +46,12 @@ RUN dnf install -y \
gstreamer1-plugins-base \ gstreamer1-plugins-base \
gstreamer1-vaapi \ gstreamer1-vaapi \
ffmpeg \ ffmpeg \
&& dnf remove -y sddm 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 install -y flatpak \ && dnf install -y flatpak \
&& dnf clean all \ && dnf clean all \
&& rm -rf /var/cache/dnf && rm -rf /var/cache/dnf
#Installation de Filen Desktop #Installation de Filen Desktop
RUN wget https://cdn.filen.io/@filen/desktop/release/latest/Filen_linux_x86_64.rpm -O /tmp/filen.rpm \ 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 \ && dnf install -y /tmp/filen.rpm \
@@ -80,6 +81,18 @@ RUN echo "LANG=fr_FR.UTF-8" > /etc/locale.conf \
&& ln -sf /usr/share/zoneinfo/Europe/Paris /etc/localtime \ && ln -sf /usr/share/zoneinfo/Europe/Paris /etc/localtime \
&& echo "user.max_user_namespaces=28633" > /etc/sysctl.d/userns.conf && echo "user.max_user_namespaces=28633" > /etc/sysctl.d/userns.conf
# Installation du pack d'icones MoreWaita
RUN git clone https://github.com/somepaulo/MoreWaita.git && cd MoreWaita && ./install.sh && \
rm -rf MoreWaita && \
printf "[org/gnome/desktop/interface]\nicon-theme='MoreWaita'\n" > /etc/dconf/db/local.d/02-icon-theme && \
dconf update 2>/dev/null || true
#Configuration des fenêtres gnome pour avoir les btns style windows
RUN mkdir -p /etc/dconf/db/local.d /etc/dconf/profile && \
printf "[org/gnome/desktop/wm/preferences]\nbutton-layout=':minimize,maximize,close'\n" > /etc/dconf/db/local.d/02-window-buttons && \
printf "user-db:user\nsystem-db:local\n" > /etc/dconf/profile/user && \
dconf update 2>/dev/null || true
#Activation du module xpad pour support manette xbox #Activation du module xpad pour support manette xbox
RUN echo "xpad" > /etc/modules-load.d/xpad.conf RUN echo "xpad" > /etc/modules-load.d/xpad.conf
@@ -95,5 +108,5 @@ RUN systemctl set-default graphical.target
#Activation des services + Desactivation de bootc-update automatique #Activation des services + Desactivation de bootc-update automatique
RUN systemctl preset-all && \ RUN systemctl preset-all && \
systemctl enable --force plasmalogin.service NetworkManager.service bluetooth.service podman.socket cups.service mullvad-daemon.service && \ systemctl enable gdm.service NetworkManager.service bluetooth.service podman.socket cups.service mullvad-daemon.service && \
systemctl mask bootc-fetch-apply-updates.timer systemctl mask bootc-fetch-apply-updates.timer systemd-remount-fs.service