10 lines
236 B
Docker
10 lines
236 B
Docker
FROM alpine:latest
|
|
|
|
RUN \
|
|
apk -U add proftpd proftpd-mod_tls proftpd-mod_ifsession proftpd-utils openssl perl acme.sh && \
|
|
mkdir -p /var/run/proftpd /etc/proftpd/custom.conf.d/
|
|
|
|
COPY rootfs /
|
|
|
|
ENTRYPOINT ["/app/entrypoint.sh"]
|