mirror of
				https://github.com/linuxkit/linuxkit.git
				synced 2025-10-31 17:47:17 +00:00 
			
		
		
		
	- Remove the qemu.sh entrypoint - This means that any qemu command can be used (e.g qemu.img) Signed-off-by: Dave Tucker <dt@docker.com>
		
			
				
	
	
		
			16 lines
		
	
	
		
			223 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			223 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM alpine:edge
 | |
| 
 | |
| COPY repositories /etc/apk/
 | |
| 
 | |
| RUN \
 | |
|   apk update && apk upgrade && \
 | |
|   apk add --no-cache \
 | |
|   libarchive-tools \
 | |
|   qemu-img \
 | |
|   qemu-system-arm \
 | |
|   qemu-system-x86_64 \
 | |
|   ovmf@testing \
 | |
|   && true
 | |
| 
 | |
| COPY . .
 |