You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			14 lines
		
	
	
		
			386 B
		
	
	
	
		
			Bash
		
	
			
		
		
	
	
			14 lines
		
	
	
		
			386 B
		
	
	
	
		
			Bash
		
	
| #!/bin/bash
 | |
| 
 | |
| set -e
 | |
| 
 | |
| cd "$(dirname "$0")"
 | |
| os="${1:-centos}"
 | |
| os_codename="${2:-core}"
 | |
| 
 | |
| docker build --build-arg KASMVNC_PACKAGE_DIR="build/${os}_${os_codename}" \
 | |
|   -t kasmvnctester_barebones_${os}:$os_codename \
 | |
|   -f dockerfile.${os}_${os_codename}.barebones.rpm.test .
 | |
| docker run -it -p 443:8443 --rm -e "VNC_USER=foo" -e "VNC_PW=foobar" \
 | |
|   kasmvnctester_barebones_${os}:$os_codename
 |