sql auth and healthcheck
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-02-11 21:09:40 +01:00
parent 9fca459f93
commit 8289114ee6
6 changed files with 139 additions and 2 deletions

View File

@@ -1,9 +1,14 @@
FROM alpine:latest
RUN \
apk -U add proftpd proftpd-mod_tls proftpd-mod_ifsession proftpd-utils openssl perl acme.sh && \
apk -U add proftpd proftpd-mod_tls proftpd-mod_ifsession \
proftpd-mod_deflate proftpd-mod_geoip proftpd-mod_sql_sqlite \
proftpd-utils openssl perl acme.sh lftp sqlite && \
mkdir -p /var/run/proftpd /etc/proftpd/custom.conf.d/
COPY rootfs /
HEALTHCHECK --interval=2m --timeout=3s \
CMD /app/healthcheck.sh || exit 1
ENTRYPOINT ["/app/entrypoint.sh"]