feat: first version

This commit is contained in:
2025-07-30 12:21:00 -06:00
commit 809c34d6f5
6 changed files with 366 additions and 0 deletions

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
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"]