Initial commit
All checks were successful
Build / build (push) Successful in 2m14s

This commit is contained in:
Julien Valverdé
2025-09-08 17:41:25 +02:00
commit 8e84df1417
3 changed files with 83 additions and 0 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM caddy:2.10.2-builder AS builder
RUN --mount=type=cache,target=/go/pkg/mod \
--mount=type=cache,target=/root/.cache/go-build \
xcaddy build \
--with github.com/greenpau/caddy-security@v1.1.31 \
--with github.com/hslatman/caddy-crowdsec-bouncer/crowdsec@v0.9.2 \
--with github.com/caddy-dns/namecheap@master
FROM caddy:2.10.2
COPY --from=builder /usr/bin/caddy /usr/bin/caddy