Files
ssh-scp-deploy/Dockerfile
Marco Dalla Santa ca82210d43 Initial commit
2020-12-18 17:22:26 +01:00

13 lines
209 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
ENTRYPOINT ["/entrypoint.sh"]