From 5bb898cd8c5b8f56b20c21120d8301efdc1120eb Mon Sep 17 00:00:00 2001 From: Roman Vanicek Date: Tue, 5 May 2026 21:47:31 +0200 Subject: [PATCH] Allow comments in config file --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a6747bb..5b366c2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,8 @@ FROM caddy:builder AS builder # Build Caddy with the Layer 4 module included RUN xcaddy build \ - --with github.com/mholt/caddy-l4 + --with github.com/mholt/caddy-l4 \ + --with github.com/caddyserver/jsonc-adapter # Pull the compiled binary into the final lightweight image FROM caddy:latest