devcontainer/Containerfile

32 lines
1.2 KiB
Plaintext
Raw Permalink Normal View History

2024-12-12 19:42:39 +00:00
# ========================================= #
# Containerfile v1.0; job79 #
# Configure and setup a neovim devcontainer #
# for go and nodejs development. #
# ========================================= #
FROM quay.io/fedora/fedora:41
2024-09-17 18:32:24 +00:00
# === setup system ===
2024-12-20 19:24:29 +00:00
RUN dnf update -y && \
dnf copr enable -y atim/lazygit && \
dnf -y install neovim unzip \
bash-completion zoxide fd-find chafa lazygit procps \
2024-09-23 17:56:52 +00:00
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
2024-12-13 19:21:31 +00:00
RUN mkdir /run/user/1000 && chown user:user /run/user/1000
2024-09-17 18:32:24 +00:00
USER user
WORKDIR /home/user
COPY config/user/bashrc /home/user/.bashrc
COPY config/user/profile /home/user/.bash_profile
2024-09-17 18:32:24 +00:00
# === setup neovim ===
2024-09-23 17:56:52 +00:00
RUN git clone --depth 1 https://github.com/LazyVim/starter ~/.config/nvim
2024-10-14 18:06:29 +00:00
COPY --chown=user:user config/nvim/plugins /home/user/.config/nvim/lua/plugins
COPY --chown=user:user config/nvim/config /home/user/.config/nvim/lua/config
2024-10-14 18:06:29 +00:00
COPY --chown=user:user config/nvim/lazyvim.json /home/user/.config/nvim/lazyvim.json
2024-09-28 15:56:33 +00:00
# === setup container ===
ENV TZ="Europe/Amsterdam"
VOLUME /home/user/.local /home/user/.cache