From 16bf587d5d1f46f3e5ffc08f5d2a449e58fafdf6 Mon Sep 17 00:00:00 2001 From: Matthew Vance Date: Sat, 4 Apr 2020 17:31:16 -0500 Subject: [PATCH] :racehorse: Build with TCP fast open --- unbound/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/unbound/Dockerfile b/unbound/Dockerfile index b30fb29..aceb366 100644 --- a/unbound/Dockerfile +++ b/unbound/Dockerfile @@ -68,6 +68,8 @@ RUN build_deps="curl gcc libc-dev libevent-dev libexpat1-dev make" && \ --with-username=_unbound \ --with-ssl=/opt/openssl \ --with-libevent \ + --enable-tfo-server \ + --enable-tfo-client \ --enable-event-api && \ make install && \ mv /opt/unbound/etc/unbound/unbound.conf /opt/unbound/etc/unbound/unbound.conf.example && \ @@ -85,7 +87,7 @@ LABEL maintainer="Matthew Vance" ENV name=unbound \ unbound_version=1.10.0 \ - version=1.4 + version=1.5 ENV summary="${name} is a validating, recursive, and caching DNS resolver." \ description="${name} is a validating, recursive, and caching DNS resolver."