mirror of
https://github.com/Monadical-SAS/network-filter.git
synced 2025-12-20 04:09:06 +00:00
16 lines
219 B
Docker
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"]
|