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