ftp-action/Dockerfile

11 lines
169 B
Docker
Raw 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
2020-04-13 02:47:49 +08:00
RUN apk --no-cache add ncftp
2019-09-05 04:29:00 +08:00
COPY entrypoint.sh /entrypoint.sh
2019-11-17 01:45:24 +08:00
2019-09-05 04:29:00 +08:00
ENTRYPOINT ["/entrypoint.sh"]