drone-ftps/Dockerfile

13 lines
184 B
Docker
Raw Normal View History

FROM alpine:edge
2017-10-25 09:04:05 +00:00
RUN apk --no-cache add \
2022-05-18 09:22:09 +00:00
openssh \
2017-10-25 09:04:05 +00:00
libressl \
2017-10-25 21:59:10 +00:00
lftp \
bash
2017-10-25 09:04:05 +00:00
ADD upload.sh /bin/
RUN chmod +x /bin/upload.sh
ENTRYPOINT /bin/upload.sh