11 lines
298 B
Docker
11 lines
298 B
Docker
FROM quay.io/fedora/fedora:43
|
|
|
|
# === install system packages ===
|
|
RUN dnf update -y && \
|
|
dnf copr enable -y atim/lazygit && \
|
|
dnf -y install procps ping bash-completion glibc-langpack-en \
|
|
host-spawn dbus-launch \
|
|
zoxide git npm neovim awk jq unzip fd-find lazygit && \
|
|
dnf clean all
|
|
|