Move reverse-proxy to jenkins and config upgrade

This commit is contained in:
2026-01-08 16:41:52 +00:00
parent 261fa9e15d
commit 4320fb53b4
8 changed files with 167 additions and 97 deletions

13
Dockerfile Executable file
View File

@@ -0,0 +1,13 @@
ARG CADDY_VERSION=2.10.2
# --- BUILD ---
# Add cache plugin
FROM caddy:${CADDY_VERSION}-builder AS builder
RUN xcaddy build \
--with github.com/caddyserver/cache-handler
# --- DEPLOY ---
FROM caddy:${CADDY_VERSION}
COPY --from=builder /usr/bin/caddy /usr/bin/caddy