Compare commits

..

4 Commits

Author SHA1 Message Date
Gertjan Krol e1ca2e7d20 Updated Unbound to version `1.21.0`
Test / test_build (push) Successful in 3m53s Details
Release / build_push (push) Successful in 2m25s Details
2024-08-18 10:49:10 +02:00
Gertjan Krol 6a67f676d3 Merge pull request 'Unbound 1.20.0' (#5) from feature/unbound-1.20.0 into master
Test / test_build (push) Successful in 3m29s Details
Release / build_push (push) Successful in 21s Details
Reviewed-on: #5
2024-05-14 08:11:44 +00:00
Gertjan Krol b968f57c82 Update CHANGELOG.md 2024-05-14 08:10:50 +00:00
Gertjan Krol 9d7104b782 Updated Unbound to 1.20.0 2024-05-14 08:10:05 +00:00
2 changed files with 8 additions and 2 deletions

View File

@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file.
## [Unreleased]
## [1.21.0]
- Updated Unbound to version `1.21.0`
## [1.20.0]
- Updated Unbound to version `1.20.0`
## [1.19.0]
- Updated Unbound to version `1.19.0`

View File

@ -1,10 +1,10 @@
FROM alpine:3.15.5
ARG UNBOUND_VERSION=1.19.0
ARG UNBOUND_VERSION=1.21.0
# Install dependencies and build unbound, clean up after
RUN apk --update add --no-cache alpine-sdk bison dns-root-hints expat-dev flex git openssl-dev && \
# Clone tag and build unbound source (https://github.com/NLnetLabs/unbound)
# Clone at given tag and build Unbound from 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 && \