added tini and entrypoint script

This commit is contained in:
Paolo Asperti 2025-03-24 11:18:41 +01:00
parent c6af6a69eb
commit c1cd0ea0d4
Signed by: paspo
GPG Key ID: 06D46905D19D5182
2 changed files with 7 additions and 2 deletions

View File

@ -2,7 +2,7 @@ FROM alpine:latest
RUN \
apk --update upgrade && \
apk add unbound bind-tools && \
apk add unbound bind-tools tini && \
wget -O /etc/unbound/named.cache ftp://ftp.internic.net//domain/named.cache
COPY rootfs /
@ -10,4 +10,4 @@ COPY rootfs /
HEALTHCHECK --interval=30s --start-period=5s --timeout=10s \
CMD /usr/bin/host -T -p 1053 asperti.com 127.0.0.1
ENTRYPOINT ["/usr/sbin/unbound", "-d"]
ENTRYPOINT ["/sbin/tini", "--", "/bin/sh", "/app/entrypoint.sh"]

5
rootfs/app/entrypoint.sh Executable file
View File

@ -0,0 +1,5 @@
#!/bin/sh
/usr/sbin/unbound -d