mirror of
				https://github.com/linuxkit/linuxkit.git
				synced 2025-11-04 15:35:23 +00:00 
			
		
		
		
	LTP is compiled in on debian container and the binaries then copied into another container, which is pushed to hub. LTP does not compile on Alpine as it uses glibc specific pthread extensions. I tried to link LTP statically to not require a glibc based base image but that failed too. Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
		
			
				
	
	
		
			5 lines
		
	
	
		
			152 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			5 lines
		
	
	
		
			152 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM debian:jessie-slim@sha256:2a14128195ab26b1c56c5773dda9def9b909c2e01596ef9108e2295d418210a3
 | 
						|
ADD . /
 | 
						|
WORKDIR /opt/ltp
 | 
						|
ENTRYPOINT ["./runltplite.sh"]
 |