Files
ssh-scp-deploy/Dockerfile
Marco Dalla Santa 5b2be75e1a Changed Dockerfile.
2020-12-21 21:39:35 +01:00

17 lines
273 B
Docker

FROM alpine:latest
RUN apk update && \
apk add --no-cache ca-certificates \
openssh-client \
sshpass \
bash
COPY LICENSE README.md /
COPY entrypoint.sh /entrypoint.sh
COPY with_key.sh /with_key.sh
COPY with_pass.sh /with_pass.sh
ENTRYPOINT ["/entrypoint.sh"]