Mika Bomm
b40fe970b7
caddy is now fully functional only nitpick is that 444 is always required and docker build for the porkbun support
9 lines
179 B
Docker
9 lines
179 B
Docker
# Dockerfile
|
|
FROM caddy:builder AS builder
|
|
|
|
RUN xcaddy build \
|
|
--with github.com/caddy-dns/porkbun
|
|
|
|
FROM caddy:2.8.4-alpine
|
|
|
|
COPY --from=builder /usr/bin/caddy /usr/bin/caddy
|