From 25751824508a94b991f96a79d92b32bdd0e1f784 Mon Sep 17 00:00:00 2001 From: Jordan Potter Date: Tue, 16 Dec 2025 09:01:15 -0800 Subject: [PATCH] Pin to Alpine 3.22 (#50) The version of openresolv in Alpine 3.23 breaks the Wireguard container with: resolvconf: signature mismatch: /etc/resolv.conf For now, use an older version of openresolv until the community determines a better solution. Example discussion: https://www.linuxquestions.org/questions/slackware-14/openresolv-3-17-0-breaks-bringing-up-my-wireguard-vpn-4175751894/ Co-authored-by: Jordan Potter --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f5ae0f8..e0745fb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ -FROM alpine:3 +FROM alpine:3.22 RUN apk add --no-cache \ - findutils openresolv iptables ip6tables iproute2 wireguard-tools + findutils openresolv iptables ip6tables iproute2 wireguard-tools COPY entrypoint.sh /entrypoint.sh