All checks were successful
Build and Push Docker Image / build (push) Successful in 1m5s
12 lines
288 B
Docker
12 lines
288 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/greenpau/caddy-git
|
|
|
|
FROM caddy:latest
|
|
|
|
COPY --from=builder /usr/bin/caddy /usr/bin/caddy
|