12 lines
278 B
Text
12 lines
278 B
Text
FROM alpine:3.18.4
|
|
|
|
LABEL maintainer="Amin Vakil <info@aminvakil.com>"
|
|
|
|
RUN apk --no-cache add vsftpd=3.0.5-r2
|
|
|
|
COPY start_vsftpd.sh /usr/local/bin/start_vsftpd.sh
|
|
COPY vsftpd.conf_nossl /etc/vsftpd/vsftpd.conf
|
|
|
|
STOPSIGNAL SIGKILL
|
|
|
|
ENTRYPOINT ["/usr/local/bin/start_vsftpd.sh"]
|