mirror of
				https://github.com/linuxkit/linuxkit.git
				synced 2025-10-31 18:50:15 +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/
 |