From 22455245fdeba185ad76f51afc2fafdd4d1045ad Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 6 Mar 2026 21:41:01 +0000 Subject: [PATCH] Update caddy Docker tag to v2.11.2 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 94a1658..8d81ebd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ COPY src /app/src WORKDIR /app RUN elm make src/Main.elm --output dist/index.html -FROM caddy:2.11.1-alpine +FROM caddy:2.11.2-alpine COPY static /public COPY --from=build /app/dist/index.html /public/index.html CMD ["caddy", "file-server", "--root", "/public"]