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.
		
		
		
		
		
			
		
			
				
	
	
		
			17 lines
		
	
	
		
			463 B
		
	
	
	
		
			Bash
		
	
			
		
		
	
	
			17 lines
		
	
	
		
			463 B
		
	
	
	
		
			Bash
		
	
#!/bin/bash
 | 
						|
 | 
						|
set -e
 | 
						|
 | 
						|
cd "$(dirname "$0")/.."
 | 
						|
. ./builder/common.sh
 | 
						|
os="${1:-debian}"
 | 
						|
os_codename="${2:-buster}"
 | 
						|
 | 
						|
docker build --build-arg KASMVNC_PACKAGE_DIR="builder/build/${os_codename}" \
 | 
						|
  -t kasmvnctester_barebones_${os}:$os_codename \
 | 
						|
  -f builder/dockerfile.${os}_${os_codename}.barebones.deb.test .
 | 
						|
echo
 | 
						|
docker run -it -p "443:$VNC_PORT" --rm -e "VNC_USER=foo" -e "VNC_PW=foobar" \
 | 
						|
  -e "VNC_PORT=$VNC_PORT" \
 | 
						|
  kasmvnctester_barebones_${os}:$os_codename
 |