Updated Unbound to version `1.16.1`

pull/1/head
Gertjan Krol 2022-07-21 21:18:43 +02:00
parent 1ab68caaac
commit 7dcb50370f
2 changed files with 10 additions and 5 deletions

View File

@ -1,9 +1,11 @@
FROM alpine:3.15.0
FROM alpine:3.15.5
ARG UNBOUND_VERSION=1.16.1
# Install dependencies and build unbound (and install bind-tools for dig in healthcheck), clean up after
RUN apk --update add --no-cache alpine-sdk bind-tools dns-root-hints expat-dev git openssl-dev && \
# Clone and build unbound source (https://github.com/NLnetLabs/unbound)
git clone --depth 1 --branch 'release-1.14.0' https://github.com/NLnetLabs/unbound.git /tmp/unbound && \
# 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 && \
cd /tmp/unbound && \
./configure && \
make && \

View File

@ -3,8 +3,11 @@ All notable changes to this project will be documented in this file.
## [Unreleased]
## [1.16.1]
- Updated Unbound to version `1.16.1`
## [1.14.0]
- Initial release with `unbound 1.14.0` [major]
- Initial release with `unbound 1.14.0`
## [0.0.1] - 2022-01-22
- Birth of the project! [patch]
- Birth of the project!