mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
13 lines
331 B
Docker
13 lines
331 B
Docker
FROM caddy:2.9.1-builder AS builder
|
|
|
|
LABEL maintainer="stefan@pejcic.rs"
|
|
LABEL author="Stefan Pejcic"
|
|
|
|
RUN xcaddy build \
|
|
--with github.com/corazawaf/coraza-caddy/v2 \
|
|
--with github.com/caddyserver/caddy/v2/modules/caddy.logging.encoders.single_field
|
|
|
|
FROM caddy:2.9.1
|
|
|
|
COPY --from=builder /usr/bin/caddy /usr/bin/caddy
|