From 49499d099bcb652b38cc52e308f3dabe7d551343 Mon Sep 17 00:00:00 2001 From: mo8it Date: Fri, 13 Oct 2023 15:33:24 +0200 Subject: [PATCH] Use dnf upgrade instead of update --- images/ttyd/ttyd.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/ttyd/ttyd.fish b/images/ttyd/ttyd.fish index 521af75..77803d4 100755 --- a/images/ttyd/ttyd.fish +++ b/images/ttyd/ttyd.fish @@ -14,7 +14,7 @@ buildah from --pull --name builder registry.fedoraproject.org/fedora:latest; or # Remove the flag that prevents installing docs buildah run builder -- sed -i /nodocs/d /etc/dnf/dnf.conf -buildah run builder -- dnf update -y +buildah run builder -- dnf upgrade -y # Reinstall packages to install missing docs set -l installed_packages (buildah run builder -- dnf list --installed | tail -n +2 | awk '{print $1}')