mirror of
				https://github.com/linuxkit/linuxkit.git
				synced 2025-10-31 00:45:22 +00:00 
			
		
		
		
	Move it to tools and renamed it to kernel-compile, similar to c-compile and go-compile. Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
		
			
				
	
	
		
			24 lines
		
	
	
		
			305 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			305 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM alpine:3.5
 | |
| RUN \
 | |
|   apk update && apk upgrade && \
 | |
|   apk add \
 | |
|   build-base \
 | |
|   argp-standalone \
 | |
|   automake \
 | |
|   bash \
 | |
|   bc \
 | |
|   binutils-dev \
 | |
|   curl \
 | |
|   git \
 | |
|   gmp-dev \
 | |
|   installkernel \
 | |
|   kmod \
 | |
|   libelf-dev \
 | |
|   linux-headers \
 | |
|   ncurses-dev \
 | |
|   sed \
 | |
|   squashfs-tools \
 | |
|   tar \
 | |
|   xz \
 | |
|   && true
 |