docker-alpine-ftp-server-tls/Dockerfile

14 lines
314 B
Text
Raw Normal View History

2022-11-13 03:19:58 +00:00
FROM alpine:3.16.3
2020-02-05 21:16:40 +00:00
LABEL maintainer="Amin Vakil <info@aminvakil.com>"
2021-11-19 11:12:27 +00:00
RUN apk --no-cache add vsftpd=3.0.5-r1
2018-06-16 14:50:45 +00:00
2020-02-05 21:16:40 +00:00
COPY vsftpd.pem /etc/ssl/certs/vsftpd.pem
COPY start_vsftpd.sh /usr/local/bin/start_vsftpd.sh
2018-06-16 14:50:45 +00:00
COPY vsftpd.conf /etc/vsftpd/vsftpd.conf
2021-03-24 02:41:03 +00:00
STOPSIGNAL SIGKILL
2020-02-05 21:16:40 +00:00
ENTRYPOINT ["/usr/local/bin/start_vsftpd.sh"]