2022-03-24 02:43:56 +00:00
|
|
|
FROM alpine:3.15.2
|
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
|
2019-11-28 19:03:06 +00:00
|
|
|
|
2020-02-05 21:16:40 +00:00
|
|
|
ENTRYPOINT ["/usr/local/bin/start_vsftpd.sh"]
|