ftp-action/Dockerfile

10 lines
138 B
Docker
Raw Normal View History

2019-09-05 04:29:00 +08:00
FROM alpine:3.10
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"]