From 2934f71d30f28f05c9082332ba93a7495809cf40 Mon Sep 17 00:00:00 2001 From: Jordan Potter Date: Tue, 16 Dec 2025 08:45:28 -0800 Subject: [PATCH] Pin to Alpine 3.22 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/ --- 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