initial import

This commit is contained in:
2025-05-06 09:08:19 +02:00
commit 142b6e3a75
9 changed files with 909 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM alpine:latest
RUN \
apk --update upgrade && \
apk add tini pdns pdns-backend-sqlite3
COPY rootfs /
HEALTHCHECK --interval=30s --start-period=5s --timeout=10s \
CMD /usr/bin/host -T -p 1053 asperti.com 127.0.0.1
ENTRYPOINT ["/sbin/tini", "--", "/bin/sh", "/app/entrypoint.sh"]