From a2d2e011b480899081bbd75dde078a6a99af6944 Mon Sep 17 00:00:00 2001 From: Aaron U'Ren Date: Sun, 30 Jun 2024 15:20:56 -0500 Subject: [PATCH] fix(Dockerfile): re-add ip6tables binary When we reverted from Alpine 3.19 to Alpine 3.18 we somehow lost the ip6tables package which caused issues for users of ipv6. --- Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Dockerfile b/Dockerfile index a843295d12..f848821756 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,6 +25,7 @@ FROM ${RUNTIME_BASE} RUN apk add --no-cache \ iptables \ + ip6tables \ ipset \ iproute2 \ ipvsadm \ @@ -61,6 +62,10 @@ RUN if ! command -v iptables-nft > /dev/null; then \ echo "ERROR: iptables-legacy is not installed" 1>&2; \ exit 1; \ fi && \ + if ! command -v ip6tables > /dev/null; then \ + echo "ERROR: ip6tables is not installed" 1>&2; \ + exit 1; \ + fi && \ /iptables-wrapper-installer.sh --no-sanity-check WORKDIR /root