mirror of
				https://github.com/appleboy/drone-ssh.git
				synced 2025-10-29 00:51:15 +08:00 
			
		
		
		
	 b33ad90151
			
		
	
	
		b33ad90151
		
	
	
	
	
		
			
			- Update ca-certificates version from `20220614-r4` to `20230506-r0` Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
		
			
				
	
	
		
			21 lines
		
	
	
		
			601 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			601 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM alpine:3.17
 | |
| 
 | |
| ARG TARGETOS
 | |
| ARG TARGETARCH
 | |
| 
 | |
| LABEL maintainer="Bo-Yi Wu <appleboy.tw@gmail.com>" \
 | |
|   org.label-schema.name="SSH Plugin" \
 | |
|   org.label-schema.vendor="Bo-Yi Wu" \
 | |
|   org.label-schema.schema-version="1.0"
 | |
| 
 | |
| LABEL org.opencontainers.image.source=https://github.com/appleboy/drone-ssh
 | |
| LABEL org.opencontainers.image.description="Execute commands on a remote host through SSH"
 | |
| LABEL org.opencontainers.image.licenses=MIT
 | |
| 
 | |
| RUN apk add --no-cache ca-certificates=20230506-r0 && \
 | |
|   rm -rf /var/cache/apk/*
 | |
| 
 | |
| COPY release/${TARGETOS}/${TARGETARCH}/drone-ssh /bin/
 | |
| 
 | |
| ENTRYPOINT ["/bin/drone-ssh"]
 |