commit 66c454395e128a0491daa89b077289c59d91e5ee Author: Job79 Date: Sat Jan 24 15:04:05 2026 +0100 init diff --git a/Containerfile b/Containerfile new file mode 100644 index 0000000..5639b54 --- /dev/null +++ b/Containerfile @@ -0,0 +1,11 @@ +FROM caddy:2.10-builder AS builder + +RUN --mount=type=cache,target=/go/pkg/mod \ + --mount=type=cache,target=/root/.cache/go-build \ + xcaddy build \ + --with github.com/mholt/caddy-l4/modules/l4proxy \ + --with github.com/mholt/caddy-l4/modules/l4tls \ + --with github.com/mholt/caddy-l4/modules/l4proxyprotocol + +FROM caddy:2.10 +COPY --from=builder /usr/bin/caddy /usr/bin/caddy