mirror of
				https://github.com/linuxkit/linuxkit.git
				synced 2025-10-31 09:37:21 +00:00 
			
		
		
		
	This is part of the new moby tool work to get a minimal system up that can be expanded. Signed-off-by: Justin Cormack <justin.cormack@docker.com>
		
			
				
	
	
		
			17 lines
		
	
	
		
			238 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			238 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM alpine:3.5
 | |
| RUN \
 | |
|   apk update && apk upgrade && \
 | |
|   apk add \
 | |
|   bsd-compat-headers \
 | |
|   curl \
 | |
|   gcc \
 | |
|   git \
 | |
|   libc-dev \
 | |
|   linux-headers \
 | |
|   util-linux-dev \
 | |
|   && true
 | |
| 
 | |
| COPY compile.sh /usr/bin/
 | |
| 
 | |
| ENTRYPOINT ["/usr/bin/compile.sh"]
 |