drone-ftps/Dockerfile
Christoph Schlosser 13ab12a0c5
Use alpine:edge to get lftp 4.8.4
The new lftp version contains important bug fixes #11
2018-09-12 21:54:07 +02:00

12 lines
166 B
Docker

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