From 4bb6d0111b8144ff52cd64435a10782577b35dfb Mon Sep 17 00:00:00 2001 From: Theodore Chang Date: Mon, 30 Mar 2026 04:15:17 +0200 Subject: [PATCH] Add iptables to Dockerfile dependencies --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e49ad63..fcec5aa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,9 +31,9 @@ RUN if [ ! -e /etc/nsswitch.conf ]; then echo 'hosts: files dns' > /etc/nsswitch # commands, this will cause the build process to become very slow. RUN set -ex \ && apk upgrade \ - && apk add bash tzdata ca-certificates \ + && apk add bash tzdata ca-certificates iptables \ && rm -rf /var/cache/apk/* COPY --from=builder /go/bin/hysteria /usr/local/bin/hysteria -ENTRYPOINT ["hysteria"] \ No newline at end of file +ENTRYPOINT ["hysteria"]