19 lines
		
	
	
		
			435 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			435 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM tweekmonster/vim-testbed:latest
 | 
						|
 | 
						|
RUN install_vim -tag v8.0.0027 -build \
 | 
						|
                -tag neovim:v0.1.7 -build
 | 
						|
 | 
						|
ENV PACKAGES="\
 | 
						|
    bash \
 | 
						|
    git \
 | 
						|
    python \
 | 
						|
    py-pip \
 | 
						|
"
 | 
						|
RUN apk --update add $PACKAGES && \
 | 
						|
    rm -rf /var/cache/apk/* /tmp/* /var/tmp/*
 | 
						|
 | 
						|
RUN pip install vim-vint==0.3.9
 | 
						|
 | 
						|
RUN git clone https://github.com/junegunn/vader.vim vader && \
 | 
						|
    cd vader && git checkout c6243dd81c98350df4dec608fa972df98fa2a3af
 |