mirror of
https://github.com/appleboy/drone-ssh.git
synced 2025-05-09 18:23:21 +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"]
|