Add Mullvad repository and install mullvad-vpn and Filen package
Some checks failed
ci/woodpecker/push/ci Pipeline failed

This commit is contained in:
2025-10-22 11:34:37 +02:00
parent 4673f86811
commit 20aa83d249

View File

@@ -4,6 +4,10 @@ FROM registry.fedoraproject.org/fedora-bootc:42
RUN rpm --import https://packages.microsoft.com/keys/microsoft.asc \ 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 && 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 #Install de gnome avec support hardware + Podman + Cups + Vulkan driver + Plymouth
RUN dnf install -y \ RUN dnf install -y \
@gnome-desktop \ @gnome-desktop \
@@ -29,6 +33,7 @@ RUN dnf install -y \
plymouth-plugin-label \ plymouth-plugin-label \
plymouth-plugin-fade-throbber \ plymouth-plugin-fade-throbber \
podman-compose \ podman-compose \
mullvad-vpn \
&& dnf remove -y gnome-software gnome-software-rpm-ostree || true \ && dnf remove -y gnome-software gnome-software-rpm-ostree || true \
&& dnf clean all \ && dnf clean all \
&& rm -rf /var/cache/dnf && 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 \ && dnf install -y /tmp/yaak.rpm \
&& rm -f /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 #Langue FR par défaut + Fuse userns + Timezone Paris
RUN echo "LANG=fr_FR.UTF-8" > /etc/locale.conf \ RUN echo "LANG=fr_FR.UTF-8" > /etc/locale.conf \
&& echo "KEYMAP=fr" > /etc/vconsole.conf \ && echo "KEYMAP=fr" > /etc/vconsole.conf \