From 20aa83d2494d467cda56e75f13757dac89bc0c48 Mon Sep 17 00:00:00 2001 From: qpismont Date: Wed, 22 Oct 2025 11:34:37 +0200 Subject: [PATCH] Add Mullvad repository and install mullvad-vpn and Filen package --- Containerfile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Containerfile b/Containerfile index a5be246..aeacbac 100644 --- a/Containerfile +++ b/Containerfile @@ -4,6 +4,10 @@ FROM registry.fedoraproject.org/fedora-bootc:42 RUN rpm --import https://packages.microsoft.com/keys/microsoft.asc \ && echo -e "[code]\nname=Visual Studio Code\nbaseurl=https://packages.microsoft.com/yumrepos/vscode\nenabled=1\nautorefresh=1\ntype=rpm-md\ngpgcheck=1\ngpgkey=https://packages.microsoft.com/keys/microsoft.asc" | tee /etc/yum.repos.d/vscode.repo > /dev/null +#Ajout du dépot mullvad +RUN dnf config-manager addrepo --from-repofile=https://repository.mullvad.net/rpm/stable/mullvad.repo + + #Install de gnome avec support hardware + Podman + Cups + Vulkan driver + Plymouth RUN dnf install -y \ @gnome-desktop \ @@ -29,6 +33,7 @@ RUN dnf install -y \ plymouth-plugin-label \ plymouth-plugin-fade-throbber \ podman-compose \ + mullvad-vpn \ && dnf remove -y gnome-software gnome-software-rpm-ostree || true \ && dnf clean all \ && rm -rf /var/cache/dnf @@ -37,6 +42,10 @@ RUN wget https://github.com/mountain-loop/yaak/releases/download/v2025.7.0/yaak- && dnf install -y /tmp/yaak.rpm \ && rm -f /tmp/yaak.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 \ + && rm -f /tmp/filen.rpm + #Langue FR par défaut + Fuse userns + Timezone Paris RUN echo "LANG=fr_FR.UTF-8" > /etc/locale.conf \ && echo "KEYMAP=fr" > /etc/vconsole.conf \