diff --git a/Containerfile b/Containerfile index 257681e..b299d11 100644 --- a/Containerfile +++ b/Containerfile @@ -3,9 +3,6 @@ FROM registry.fedoraproject.org/fedora-bootc:43 #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 darkly -RUN dnf5 install 'dnf5-command(copr)' -y && dnf copr enable deltacopy/darkly - #Install de gnome avec support hardware + Podman + Cups + Vulkan driver + Plymouth + dev tools + divers utilitaires RUN dnf install -y \ @kde-desktop-environment \ @@ -20,7 +17,6 @@ RUN dnf install -y \ distrobox \ buildah \ podman \ - darkly \ podman-docker \ podman-compose \ fuse-overlayfs \ @@ -54,6 +50,11 @@ RUN YAAK_URL=$(curl -s https://api.github.com/repos/mountain-loop/yaak/releases/ && dnf install -y /tmp/yaak.rpm \ && rm -f /tmp/yaak.rpm +RUN DARKLY_URL=$(curl -s https://api.github.com/repos/Bali10050/Darkly/releases/latest | jq -r '.assets[] | select(.name | contains("fc43.x86_64") and endswith(".rpm")) | .browser_download_url') \ + && wget "$DARKLY_URL" -O /tmp/darkly.rpm \ + && dnf install -y /tmp/darkly.rpm \ + && rm -f /tmp/darkly.rpm + #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 \