From 614168c903258cb46606e296513888d1a8b6a75c Mon Sep 17 00:00:00 2001 From: Job79 Date: Thu, 19 Mar 2026 20:39:15 +0100 Subject: [PATCH] fix: remove npm from base container --- containers/base/Containerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/containers/base/Containerfile b/containers/base/Containerfile index 21ef51b..f77efb5 100644 --- a/containers/base/Containerfile +++ b/containers/base/Containerfile @@ -5,8 +5,7 @@ RUN --mount=type=cache,id=dnf-cache,target=/var/cache/libdnf5 \ dnf update -y && \ dnf -y --setopt=keepcache=1 --setopt=install_weak_deps=False install \ bash-completion git-core fzf curl awk jq fd-find unzip which \ - host-spawn \ - npm wl-copy gcc + host-spawn wl-copy gcc RUN LAZYGIT_VERSION=$(curl -s "https://api.github.com/repos/jesseduffield/lazygit/releases/latest" | jq -r .tag_name | sed 's/^v//') && \ curl -sL "https://github.com/jesseduffield/lazygit/releases/latest/download/lazygit_${LAZYGIT_VERSION}_linux_x86_64.tar.gz" | tar xz -C /usr/local/bin lazygit && \