kickstart.nvim/Dockerfile
Tuna Alikaşifoğlu f8bc3a4f06
feat(docker): add simple config for trying
For trying the `kickstart.nvim` configuration, a simple Docker blueprint
is implemented.
2023-02-20 02:03:22 +03:00

28 lines
447 B
Docker

FROM anatolelucet/neovim:nightly
WORKDIR /root/.config/nvim
# Install dependencies
RUN apk add --update \
bash \
curl \
wget \
gzip \
unzip \
git \
npm \
alpine-sdk \
openssh-client \
python3 \
cargo \
ripgrep \
fd
# Copy files
RUN mkdir -p /root/.config/nvim
COPY . /root/.config/nvim
# Install nvim plugins and lsp servers
RUN nvim --headless "+Lazy! install" +"MasonInstall pyright" +qa