mirror of
				https://github.com/linuxkit/linuxkit.git
				synced 2025-11-04 11:43:36 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			246 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			246 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM alpine:edge as utils
 | 
						|
RUN apk add --no-cache attr openssl
 | 
						|
 | 
						|
FROM scratch
 | 
						|
ENTRYPOINT []
 | 
						|
CMD []
 | 
						|
WORKDIR /
 | 
						|
COPY --from=utils /usr/bin/openssl /usr/bin/setfattr /usr/bin/
 | 
						|
COPY --from=utils /lib/libattr.so* /lib/libssl.so* /lib/libcrypto.so* /lib/
 |