Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-go / debug / Dockerfile
1 FROM alpine
2
3 RUN apk add --no-cache \
4       bash \
5       neovim \
6       curl \
7       nodejs \
8       yarn \
9       go
10 RUN \
11   mkdir -p ~/.local/share/nvim/site/pack/coc/start \
12   && cd ~/.local/share/nvim/site/pack/coc/start \
13   && curl -sS --fail -L https://github.com/neoclide/coc.nvim/archive/release.tar.gz|tar xzfv -
14
15 RUN nvim -c 'CocInstall -sync coc-go |q' +qall
16
17 RUN mkdir -p /root/.config/nvim/undo
18 ADD init.vim /root/.config/nvim/init.vim
19
20 WORKDIR /workdir