From dc2f2991bce785be8703da7bd9d90bcd708d4e6c Mon Sep 17 00:00:00 2001 From: Job79 Date: Sat, 21 Feb 2026 10:41:17 +0100 Subject: [PATCH] feat: add lazysql --- containers/fedora/Containerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/containers/fedora/Containerfile b/containers/fedora/Containerfile index 96df739..d7ed307 100644 --- a/containers/fedora/Containerfile +++ b/containers/fedora/Containerfile @@ -5,9 +5,10 @@ RUN --mount=type=cache,id=dnf-cache,target=/var/cache/libdnf5 \ dnf update -y && \ dnf copr enable -y atim/lazygit && \ dnf copr enable -y atim/lazydocker && \ + dnf copr enable -y gierth/tools-golang && \ dnf -y --setopt=keepcache=1 install procps ping bash-completion glibc-langpack-en \ host-spawn dbus-launch \ - zoxide git npm neovim awk jq unzip fd-find lazygit lazydocker + zoxide git npm neovim awk jq unzip fd-find lazygit lazydocker lazysql # === setup user === RUN useradd -ms /bin/bash user && echo 'user ALL=NOPASSWD: ALL' > /etc/sudoers && mkdir -p /run/user/1000 && chown user:user /run/user/1000