自分のvimrcを試すDockerfile
code:Dockerfile
FROM ubuntu:focal
ENV DEBIAN_FRONTEND=noninteractive
# Neovim
RUN apt update && apt install -y ninja-build gettext libtool libtool-bin autoconf automake cmake g++ pkg-config unzip git
WORKDIR /usr/local/src
WORKDIR /usr/local/src/neovim
RUN make && make install
# ctags
RUN apt install -y exuberant-ctags
# Node
RUN apt install -y nodejs
RUN npm install --global yarn
# Deno
ENV PATH $PATH:/root/.deno/bin
# Python
RUN apt install -y python3-pip
RUN pip3 install neovim
# bat & ripgrep
RUN apt install -y -o Dpkg::Options::="--force-overwrite" bat ripgrep
# fd
RUN apt install -y fd-find
# vimrc