From 6e8d8befb8dcbaf72a6b1733e27d9c3516286ce6 Mon Sep 17 00:00:00 2001 From: Ross Shen Date: Sun, 18 Sep 2022 23:19:25 +0800 Subject: [PATCH] docker: add iptables package --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 44dc3b52..c7a864e7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,11 +16,11 @@ RUN go mod download &&\ FROM alpine:latest LABEL org.opencontainers.image.source="https://github.com/MetaCubeX/Clash.Meta" -RUN apk add --no-cache ca-certificates tzdata +RUN apk add --no-cache ca-certificates tzdata iptables VOLUME ["/root/.config/clash/"] COPY --from=builder /clash-config/ /root/.config/clash/ COPY --from=builder /clash /clash RUN chmod +x /clash -ENTRYPOINT [ "/clash" ] \ No newline at end of file +ENTRYPOINT [ "/clash" ]