ftp-action/Dockerfile

10 lines
138 B
Docker
Raw Permalink Normal View History

2020-03-16 17:01:41 +08:00
FROM alpine:3.11
2019-09-05 04:29:00 +08:00
2019-11-17 01:45:24 +08:00
COPY LICENSE README.md /
2019-09-05 04:29:00 +08:00
RUN apk --no-cache add lftp
COPY entrypoint.sh /entrypoint.sh
2019-11-17 01:45:24 +08:00
2019-09-05 04:29:00 +08:00
ENTRYPOINT ["/entrypoint.sh"]