nvim/Containerfile
Maciej Lebiest 97b8a1a802
All checks were successful
Build neovim image / build-neovim-amd64 (push) Successful in 9m11s
Build neovim image / build-neovim-arm64 (push) Successful in 10m54s
Build neovim image / update-images-manifest (push) Successful in 19s
more formatters, some cleaning
2024-12-17 20:37:16 +01:00

63 lines
1.2 KiB
Docker

FROM forgejo.maciej.cloud/pkg/mc-fedora-base
# required by ansible-config
ENV LANG="C.UTF-8"
ENV LC_ALL="C.UTF-8"
# libicu - for marksman linter
ENV NEOVIM_PKGS="\
wget \
unzip \
git \
neovim \
ripgrep \
fd-find \
npm \
ShellCheck \
tree-sitter-cli \
wl-clipboard \
python3-neovim \
ansible-config \
ansible \
libicu"
ENV GENERAL_PKGS="\
tar \
gcc"
ENV PYTHON_DEVEL_PKGS="python3"
ENV MASON_PKGS=" \
bash-language-server \
css-lsp \
cssmodules-language-server \
dockerfile-language-server \
eslint-lsp \
html-lsp \
json-lsp \
marksman \
pyright \
jedi-language-server \
ruff \
sqlls \
yaml-language-server \
markdownlint \
ansible-language-server \
ansible-lint \
yamlfmt \
mdformat \
shfmt"
ENV MASON_PKGS_NO_ARM="lemminx helm-ls lua-language-server"
COPY . /root/.config/nvim
# install system dependencies
RUN dnf install -y \
${GENERAL_PKGS} ${NEOVIM_PKGS} ${PYTHON_DEVEL_PKGS} ${BUILD_ONLY_PKGS} && \
dnf -y autoremove && \
dnf clean all && \
nvim --headless +"MasonInstall ${MASON_PKGS}" +qa || exit 1 ; \
nvim --headless +"MasonInstall ${MASON_PKGS_NO_ARM}" +qa || true
ENTRYPOINT [ "/usr/bin/nvim" ]