Skip to content

Commit

Permalink
fix(Dockerfile): re-add ip6tables binary
Browse files Browse the repository at this point in the history
When we reverted from Alpine 3.19 to Alpine 3.18 we somehow lost the
ip6tables package which caused issues for users of ipv6.
  • Loading branch information
aauren committed Jun 30, 2024
1 parent a1125f6 commit a2d2e01
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ FROM ${RUNTIME_BASE}

RUN apk add --no-cache \
iptables \
ip6tables \
ipset \
iproute2 \
ipvsadm \
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit a2d2e01

Please sign in to comment.