mirror of
https://gitee.com/jiulinxiri/ssh-scp-deploy.git
synced 2025-09-10 02:15:25 +08:00
12 lines
212 B
Docker
12 lines
212 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk update && \
|
|
apk add --no-cache ca-certificates \
|
|
openssh-client \
|
|
sshpass
|
|
|
|
COPY LICENSE README.md /
|
|
COPY entrypoint.sh with_key.sh with_pass.sh /
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|