6 lines
		
	
	
		
			207 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			207 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM ubuntu
 | |
| # iproute2 in Alpine linux does not properly handle macvtap interfaces
 | |
| RUN apt-get update && apt-get install -y qemu-kvm bash iproute2
 | |
| COPY entrypoint.sh /entrypoint.sh
 | |
| ENTRYPOINT /entrypoint.sh
 |