mirror of
				https://github.com/moby/moby.git
				synced 2022-11-09 12:21:53 -05:00 
			
		
		
		
	Signed-off-by: Mrunal Patel <mrunalp@gmail.com> Add tests for no-new-privileges Signed-off-by: Mrunal Patel <mrunalp@gmail.com> Update documentation for no-new-privileges Signed-off-by: Mrunal Patel <mrunalp@gmail.com>
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			339 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			339 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/bash
 | 
						|
set -e
 | 
						|
 | 
						|
bundle .detect-daemon-osarch
 | 
						|
if [ $DOCKER_ENGINE_GOOS != "windows" ]; then
 | 
						|
	bundle .ensure-emptyfs
 | 
						|
	bundle .ensure-frozen-images
 | 
						|
	bundle .ensure-httpserver
 | 
						|
	bundle .ensure-syscall-test
 | 
						|
	bundle .ensure-nnp-test
 | 
						|
else
 | 
						|
	# Note this is Windows to Windows CI, not Windows to Linux CI
 | 
						|
	bundle .ensure-frozen-images-windows
 | 
						|
fi
 |