You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			21 lines
		
	
	
		
			426 B
		
	
	
	
		
			Docker
		
	
			
		
		
	
	
			21 lines
		
	
	
		
			426 B
		
	
	
	
		
			Docker
		
	
FROM golang:1.9.2
 | 
						|
 | 
						|
RUN apt-get update -y && \
 | 
						|
  apt-get install -y build-essential curl git libncurses5-dev python3-pip && \
 | 
						|
  apt-get clean && \
 | 
						|
  rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
 | 
						|
 | 
						|
RUN pip3 install vim-vint
 | 
						|
 | 
						|
RUN useradd -ms /bin/bash -d /vim-go vim-go
 | 
						|
USER vim-go
 | 
						|
 | 
						|
COPY . /vim-go/
 | 
						|
WORKDIR /vim-go
 | 
						|
 | 
						|
RUN scripts/install-vim vim-7.4
 | 
						|
RUN scripts/install-vim vim-8.0
 | 
						|
RUN scripts/install-vim nvim
 | 
						|
 | 
						|
ENTRYPOINT ["make"]
 |