docker-alpine-ftp-server-tls/Dockerfile

14 lines
314 B
Text
Raw Normal View History

2023-02-11 02:37:14 +00:00
FROM alpine:3.17.2
2020-02-05 21:16:40 +00:00
LABEL maintainer="Amin Vakil <info@aminvakil.com>"
RUN apk --no-cache add vsftpd=3.0.5-r2
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"]