This repository has been archived on 2021-12-24. You can view files and clone it, but cannot push or open issues/pull-requests.
self-hosting/vim/Dockerfile

7 lines
144 B
Docker

FROM alpine:latest
RUN apk update && apk add --no-cache neovim && \
mkdir -p /root/.config/nvim
COPY init.vim /root/.config/nvim/init.vim