From cd88ed2a77c0063dc4bb950714d3b3620e57f30a Mon Sep 17 00:00:00 2001 From: qpismont Date: Tue, 21 Oct 2025 20:00:18 +0200 Subject: [PATCH] Add installation of yaak package in Containerfile --- Containerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Containerfile b/Containerfile index de379a9..b93aae7 100644 --- a/Containerfile +++ b/Containerfile @@ -32,6 +32,10 @@ RUN dnf install -y \ && dnf clean all \ && rm -rf /var/cache/dnf +RUN wget https://github.com/mountain-loop/yaak/releases/download/v2025.7.0/yaak-2025.7.0-1.x86_64.rpm -O /tmp/yaak.rpm \ + && dnf install -y /tmp/yaak.rpm \ + && rm -f /tmp/yaak.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 \