mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-30 19:15:42 +00:00 
			
		
		
		
	Update to the latest stable Debian. While we are at it flatten into a single dockerfile. We really don't need the rest of the stuff from the QEMU base image just to compile test images. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Thomas Huth <thuth@redhat.com> Message-Id: <20220914155950.804707-11-alex.bennee@linaro.org>
		
			
				
	
	
		
			15 lines
		
	
	
		
			408 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			408 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| #
 | |
| # Docker cross-compiler target
 | |
| #
 | |
| # This docker target builds on the Debian Bullseye base image.
 | |
| #
 | |
| FROM docker.io/library/debian:11-slim
 | |
| 
 | |
| RUN export DEBIAN_FRONTEND=noninteractive && \
 | |
|     apt-get update && \
 | |
|     apt-get install -y eatmydata && \
 | |
|     eatmydata apt-get dist-upgrade -y && \
 | |
|     eatmydata apt-get install --no-install-recommends -y \
 | |
|         gcc-m68k-linux-gnu \
 | |
|         libc6-dev-m68k-cross
 |