All checks were successful
Build and Push Docker Image / build (push) Successful in 47s
12 lines
287 B
Docker
12 lines
287 B
Docker
FROM caddy:builder AS builder
|
|
|
|
RUN xcaddy build \
|
|
--with github.com/caddy-dns/cloudflare \
|
|
--with github.com/caddy-dns/dnspod \
|
|
--with github.com/caddy-dns/alidns \
|
|
--with github.com/42wim/caddy-gitea
|
|
|
|
FROM caddy:latest
|
|
|
|
COPY --from=builder /usr/bin/caddy /usr/bin/caddy
|