From 41e1878ebc01443f8825fe504b5c337aaf582de5 Mon Sep 17 00:00:00 2001 From: ZHAO Jin-Xiang Date: Tue, 2 Jun 2026 23:56:53 +0800 Subject: [PATCH] feat: add nftables package to Dockerfile (#865) nftables is a more modern iptables which supports both ipv4 and ipv6. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3c34fa2..f7980df 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,8 +26,8 @@ RUN cd cmd/gost && \ FROM alpine:3.23 -# add iptables for tun/tap -RUN apk add --no-cache iptables +# add iptables/nftables for tun/tap +RUN apk add --no-cache iptables nftables WORKDIR /bin/