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.
		
		
		
		
		
			
		
			
				
	
	
		
			23 lines
		
	
	
		
			676 B
		
	
	
	
		
			Bash
		
	
			
		
		
	
	
			23 lines
		
	
	
		
			676 B
		
	
	
	
		
			Bash
		
	
| #!/bin/bash
 | |
| 
 | |
| set -e
 | |
| 
 | |
| cd "$(dirname "$0")/.."
 | |
| . ./builder/process_test_options.sh
 | |
| . ./builder/os_ver_cli.sh
 | |
| . ./builder/common.sh
 | |
| 
 | |
| tester_image="builder/kasmvnctester_${os}:$os_codename${build_tag_for_images}"
 | |
| docker build --build-arg KASMVNC_PACKAGE_DIR="builder/build/${os_codename}" \
 | |
|   --build-arg BUILD_DEBIAN_REVISION="$build_debian_revision" \
 | |
|   -t "$tester_image" \
 | |
|   -f "builder/dockerfile.${os}_${os_codename}${build_tag}.deb.test" .
 | |
| 
 | |
| docker run -it -p "443:$VNC_PORT" --rm \
 | |
|   -e KASMVNC_VERBOSE_LOGGING=$KASMVNC_VERBOSE_LOGGING \
 | |
|   -e "VNC_USER=foo" -e "VNC_PW=foobar" \
 | |
|   -e "VNC_PORT=$VNC_PORT" \
 | |
|   $entrypoint_executable \
 | |
|   "$tester_image" \
 | |
|   $entrypoint_args
 |