From 700c674f9386482564abdb961d38316b42186ec2 Mon Sep 17 00:00:00 2001 From: Job79 Date: Wed, 2 Sep 2026 21:42:06 +0200 Subject: [PATCH] feat(base): add tree-sitter-cli --- containers/base/Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/containers/base/Containerfile b/containers/base/Containerfile index 4736cc1..e9af05c 100644 --- a/containers/base/Containerfile +++ b/containers/base/Containerfile @@ -5,7 +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 rg unzip which \ - host-spawn wl-copy gcc + host-spawn wl-copy gcc tree-sitter-cli 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 && \