2024-09-17 18:32:24 +00:00
|
|
|
FROM docker.io/fedora:41
|
|
|
|
|
|
|
|
# === setup system ===
|
2024-09-23 17:56:52 +00:00
|
|
|
ENV TZ="Europe/Amsterdam"
|
|
|
|
RUN dnf -y install neovim unzip \
|
|
|
|
bash-completion zoxide fd-find procps \
|
|
|
|
git go npm
|
2024-09-17 18:32:24 +00:00
|
|
|
|
|
|
|
# === setup container user ===
|
|
|
|
RUN useradd -ms /bin/bash user && usermod -aG wheel user && sed -i '/NOPASSWD/s/^#//g' /etc/sudoers
|
|
|
|
USER user
|
|
|
|
WORKDIR /home/user
|
|
|
|
COPY config/user/bashrc /home/user/.bashrc
|
|
|
|
|
|
|
|
# === setup neovim ===
|
2024-09-23 17:56:52 +00:00
|
|
|
RUN git clone --depth 1 https://github.com/LazyVim/starter ~/.config/nvim
|
|
|
|
COPY config/nvim/plugins /home/user/.config/nvim/lua/plugins
|
|
|
|
COPY config/nvim/config/options.lua /home/user/.config/nvim/config/lua/options.lua
|