Compare commits

..

No commits in common. "master" and "1.19.0" have entirely different histories.

2 changed files with 2 additions and 8 deletions

View File

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

View File

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