mirror of
				https://github.com/bensuperpc/dockcross.git
				synced 2025-10-31 08:06:23 +01:00 
			
		
		
		
	 ac8bbe2b90
			
		
	
	ac8bbe2b90
	
	
	
		
			
			This impacts the DEFAULT_DOCKCROSS_IMAGE in common.label-and-env which determines the default image version used by the dockcross script. We want the same tagged version of the image to be used its generated dockcross script (not `latest`).
		
			
				
	
	
		
			28 lines
		
	
	
		
			720 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			720 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| 
 | |
| if (( $# >= 2 )); then
 | |
|     image_complet=$1
 | |
|     image=${image_complet%:*}
 | |
|     tag=${image_complet#*:}
 | |
|     if test $tag = $image; then
 | |
|         tag="latest"
 | |
|     fi
 | |
|     shift 1
 | |
| 
 | |
|     command=$*
 | |
|     echo "command: $command"
 | |
| 
 | |
| #    echo "Pulling dockcross/$image"
 | |
| #    docker pull "dockcross/$image:$tag"
 | |
| 
 | |
|     echo "Make script dockcross-$image"
 | |
|     docker run --rm dockcross/"$image" > ./dockcross-"$image"
 | |
|     chmod +x ./dockcross-"$image"
 | |
|     
 | |
|     echo "Run command in dockcross-$image"
 | |
|     ./dockcross-"$image" -i dockcross/"$image:$tag" $command
 | |
| else
 | |
|     echo "Usage: ${0##*/} <docker imag (ex: linux-x64/linux-x64-clang/linux-arm64/windows-shared-x64/windows-static-x64...)> <command>"
 | |
|     exit 1
 | |
| fi
 |