From 958851e6cb91ab7d051aacb78e1e7218fb4b1696 Mon Sep 17 00:00:00 2001 From: Maciej Lebiest <68295743+Szwendacz99@users.noreply.github.com> Date: Tue, 5 Sep 2023 20:04:41 +0200 Subject: [PATCH] Add librewolf to gui-container --- gui-container/Dockerfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/gui-container/Dockerfile b/gui-container/Dockerfile index 26efd50..700a9e7 100644 --- a/gui-container/Dockerfile +++ b/gui-container/Dockerfile @@ -19,10 +19,12 @@ ENV GENERAL_PKGS="\ ENV APPS="\ chromium \ - firefox" + firefox \ + librewolf" -# install system dependencies -RUN dnf install -y \ +# install dependencies and basic apps +RUN dnf config-manager --add-repo https://rpm.librewolf.net/librewolf-repo.repo \ + dnf install -y \ ${GENERAL_PKGS} \ ${APPS} \ && dnf clean all