mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 12:07:31 +00:00 
			
		
		
		
	 2d2a154be7
			
		
	
	
		2d2a154be7
		
	
	
	
	
		
			
			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-12-alex.bennee@linaro.org>
		
			
				
	
	
		
			15 lines
		
	
	
		
			417 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			417 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-mips64-linux-gnuabi64 \
 | |
|         libc6-dev-mips64-cross
 |