mirror of
https://gitee.com/jiulinxiri/ssh-scp-deploy.git
synced 2025-09-10 10:19:49 +08:00
13 lines
188 B
Docker
13 lines
188 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk update && \
|
|
apk add --no-cache ca-certificates \
|
|
openssh-client \
|
|
sshpass \
|
|
bash
|
|
|
|
COPY LICENSE README.md /
|
|
|
|
COPY *.sh ./
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"] |