File: Dockerfile.repro

package info (click to toggle)
vim-ultisnips 3.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,924 kB
  • sloc: python: 8,353; sh: 64; makefile: 38
file content (11 lines) | stat: -rw-r--r-- 287 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
ARG BASE_IMAGE

FROM ultisnips:${BASE_IMAGE}

RUN curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
    https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim

ADD docker/docker_vimrc.vim /root/.vimrc
RUN vim -c 'PlugInstall | qa'

ADD docker/snippets /root/.vim/UltiSnips