mirror of
				https://github.com/linuxkit/linuxkit.git
				synced 2025-11-04 15:35:23 +00:00 
			
		
		
		
	- remove remainder of editions code - add a new check container to run tests without Docker - switch over `make test` to use new command to build tests Signed-off-by: Justin Cormack <justin.cormack@docker.com>
		
			
				
	
	
		
			9 lines
		
	
	
		
			188 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			188 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM alpine:3.5
 | 
						|
RUN apk update && apk add --no-cache build-base git go
 | 
						|
ENV GOPATH=/go PATH=$PATH:/go/bin
 | 
						|
RUN go get -u github.com/golang/lint/golint
 | 
						|
 | 
						|
COPY . ./
 | 
						|
 | 
						|
ENTRYPOINT ["/compile.sh"]
 |