From 558d168c44e25bf975182ae380d3529f904e1473 Mon Sep 17 00:00:00 2001 From: AR2000 Date: Sun, 10 Nov 2024 13:38:10 +0100 Subject: [PATCH] initial commit --- Dockerfile | 32 +++++++++++++++++++++++++++++++ bouncer.sh | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 88 insertions(+) create mode 100644 Dockerfile create mode 100644 bouncer.sh diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..4ab59f0 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,32 @@ +ARG IPTABLES_MODE=nft + +FROM ubuntu:noble AS iptables +RUN --mount=type=cache,target=/var/lib/apt/lists,sharing=locked --mount=type=cache,target=/var/cache/apt,sharing=locked <