drone-ftps/Dockerfile
2022-08-05 17:51:01 +02:00

13 lines
220 B
Docker

FROM alpine:edge
RUN apk --no-cache add \
openssh \
libressl \
lftp \
bash
ADD upload.sh /bin/
RUN chmod +x /bin/upload.sh && mkdir ~/.ssh && chmod 700 ~/.ssh
ENTRYPOINT /bin/upload.sh