mirror of
				https://github.com/docker/compose.git
				synced 2025-10-31 11:14:02 +01:00 
			
		
		
		
	- Refactor Dockerfile to be used for tests and distribution on docker hub on debian and alpine to use for final usage and also tests - Adapt test scripts to the new Dockerfiles' structure - Adapt Jenkinsfile to add alpine to the test matrix Signed-off-by: Ulysses Souza <ulysses.souza@docker.com>
		
			
				
	
	
		
			14 lines
		
	
	
		
			528 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			528 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| # From http://wiki.musl-libc.org/wiki/FAQ#Q:_where_is_ldd_.3F
 | |
| #
 | |
| #     Musl's dynlinker comes with ldd functionality built in. just create a
 | |
| #     symlink from ld-musl-$ARCH.so to /bin/ldd. If the dynlinker was started
 | |
| #     as "ldd", it will detect that and print the appropriate DSO information.
 | |
| #
 | |
| # Instead, this string replaced "ldd" with the package so that pyinstaller
 | |
| # can find the actual lib.
 | |
| exec /usr/bin/ldd "$@" | \
 | |
|     sed -r 's/([^[:space:]]+) => ldd/\1 => \/lib\/\1/g' | \
 | |
|     sed -r 's/ldd \(.*\)//g'
 |