Updated Unbound to version `1.16.1`
parent
1ab68caaac
commit
7dcb50370f
|
@ -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 && \
|
||||
|
|
|
@ -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!
|
||||
|
|
Loading…
Reference in New Issue