mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-06-18 21:15:16 +02:00
11 lines
251 B
Text
11 lines
251 B
Text
|
|
FROM caddy:2-builder-alpine AS builder
|
||
|
|
|
||
|
|
RUN xcaddy build \
|
||
|
|
--with github.com/caddy-dns/cloudflare \
|
||
|
|
--with github.com/caddy-dns/digitalocean
|
||
|
|
|
||
|
|
FROM caddy:2-alpine
|
||
|
|
|
||
|
|
COPY --from=builder /usr/bin/caddy /usr/bin/caddy
|
||
|
|
COPY Caddyfile /etc/caddy/Caddyfile
|