Files
network-filter/Dockerfile
2025-07-30 12:25:34 -06:00

16 lines
219 B
Docker

FROM alpine:latest
RUN apk add --no-cache \
iptables \
dnsmasq \
bind-tools \
curl \
bash \
iproute2
COPY network-filter.sh /network-filter.sh
EXPOSE 53/udp 53/tcp
CMD ["/network-filter.sh"]