From 7dcb50370fafc0161c1d9546dc2068352693c5ea Mon Sep 17 00:00:00 2001 From: Gertjan Krol Date: Thu, 21 Jul 2022 21:18:43 +0200 Subject: [PATCH] Updated Unbound to version `1.16.1` --- Dockerfile | 8 +++++--- changelog.md | 7 +++++-- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 971834e..b7db3ad 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 && \ diff --git a/changelog.md b/changelog.md index a7cd2b2..de46de3 100644 --- a/changelog.md +++ b/changelog.md @@ -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!