mirror of
				https://github.com/vdsm/virtual-dsm.git
				synced 2025-11-04 08:54:51 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			463 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			463 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM debian:bullseye-20211220-slim
 | 
						|
 | 
						|
RUN apt-get update && apt-get -y upgrade && \
 | 
						|
    apt-get --no-install-recommends -y install \
 | 
						|
        iproute2 \
 | 
						|
        jq \
 | 
						|
        python3 \
 | 
						|
        qemu-system-x86 \
 | 
						|
        udhcpd \
 | 
						|
    && apt-get clean
 | 
						|
 | 
						|
COPY generate-dhcpd-conf /run/
 | 
						|
COPY qemu-ifdown /run/
 | 
						|
COPY qemu-ifup /run/
 | 
						|
COPY run.sh /run/
 | 
						|
 | 
						|
VOLUME /image
 | 
						|
 | 
						|
ENTRYPOINT ["/run/run.sh"]
 | 
						|
 | 
						|
# Mostly users will probably want to configure memory usage.
 | 
						|
CMD ["-m", "512M"]
 |