unbound/Dockerfile

27 lines
965 B
Docker
Raw Normal View History

2022-07-21 19:18:43 +00:00
FROM alpine:3.15.5
ARG UNBOUND_VERSION=1.16.1
2022-01-21 23:23:55 +00:00
2022-01-23 22:07:24 +00:00
# Install dependencies and build unbound (and install bind-tools for dig in healthcheck), clean up after
2022-01-23 21:59:17 +00:00
RUN apk --update add --no-cache alpine-sdk bind-tools dns-root-hints expat-dev git openssl-dev && \
2022-07-21 19:18:43 +00:00
# Clone tag and build unbound source (https://github.com/NLnetLabs/unbound)
git clone --depth 1 --branch "release-${UNBOUND_VERSION}" https://github.com/NLnetLabs/unbound.git /tmp/unbound && \
2022-01-22 01:17:59 +00:00
cd /tmp/unbound && \
./configure && \
make && \
make install && \
# Cleanup build tools
2022-01-22 01:23:22 +00:00
make clean && \
2022-01-22 01:17:59 +00:00
rm -rf /tmp/* && \
apk del alpine-sdk expat-dev git openssl-dev
2022-01-21 23:23:55 +00:00
2022-01-23 21:59:17 +00:00
# Prepare image
2022-01-21 23:23:55 +00:00
COPY entrypoint.sh /
2022-01-23 21:59:17 +00:00
RUN addgroup -S unbound
RUN adduser -S -G unbound unbound
RUN mkdir -p /srv/unbound/conf
2022-01-21 23:23:55 +00:00
COPY unbound.conf /srv/unbound/unbound.conf
2022-01-23 21:59:17 +00:00
HEALTHCHECK --interval=60s --timeout=3s --retries=2 CMD dig ns1.gkcld.net @127.0.0.1 +dnssec || exit 1
2022-01-21 23:23:55 +00:00
ENTRYPOINT ["sh", "/entrypoint.sh"]