mirror of
				https://github.com/appleboy/drone-ssh.git
				synced 2025-11-01 01:00:11 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			172 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			172 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM alpine:3.4
 | |
| 
 | |
| RUN apk update && \
 | |
|   apk add \
 | |
|     ca-certificates \
 | |
|     openssh-client && \
 | |
|   rm -rf /var/cache/apk/*
 | |
| 
 | |
| ADD drone-ssh /bin/
 | |
| ENTRYPOINT ["/bin/drone-ssh"]
 | 
