copr to github release
All checks were successful
ci/woodpecker/push/ci Pipeline was successful

This commit is contained in:
2025-12-18 19:24:53 +01:00
parent 997ed7b2ea
commit ddce5704fa

View File

@@ -3,9 +3,6 @@ FROM registry.fedoraproject.org/fedora-bootc:43
#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
#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 #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 \ @kde-desktop-environment \
@@ -20,7 +17,6 @@ RUN dnf install -y \
distrobox \ distrobox \
buildah \ buildah \
podman \ podman \
darkly \
podman-docker \ podman-docker \
podman-compose \ podman-compose \
fuse-overlayfs \ 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 \ && dnf install -y /tmp/yaak.rpm \
&& rm -f /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 #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 \