2023-09-29 02:14:58 +00:00
|
|
|
FROM alpine:3.18.4
|
2020-06-18 13:28:33 +00:00
|
|
|
|
|
|
|
LABEL maintainer="Amin Vakil <info@aminvakil.com>"
|
|
|
|
|
2022-11-25 14:42:56 +00:00
|
|
|
RUN apk --no-cache add vsftpd=3.0.5-r2
|
2020-06-18 13:28:33 +00:00
|
|
|
|
|
|
|
COPY start_vsftpd.sh /usr/local/bin/start_vsftpd.sh
|
2020-06-25 05:45:47 +00:00
|
|
|
COPY vsftpd.conf_nossl /etc/vsftpd/vsftpd.conf
|
2020-06-18 13:28:33 +00:00
|
|
|
|
2021-03-24 10:31:32 +00:00
|
|
|
STOPSIGNAL SIGKILL
|
|
|
|
|
2020-06-18 13:28:33 +00:00
|
|
|
ENTRYPOINT ["/usr/local/bin/start_vsftpd.sh"]
|