17 lines
525 B
Docker
17 lines
525 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 chafa lazygit
|
|
|
|
WORKDIR /root
|
|
RUN mkdir -p .config .local .cache /run/user/0
|
|
RUN git clone https://git.plabble.org/Job79/neovim-config.git .config/nvim
|
|
COPY config/bashrc .bashrc
|
|
COPY config/git .config/git/config
|
|
COPY config/bin /usr/local/bin
|
|
VOLUME /root
|