From cdd91edf160cb86328d815ed432f3a3c70ca1501 Mon Sep 17 00:00:00 2001 From: Ryan Malloy Date: Mon, 23 Feb 2026 16:23:53 -0700 Subject: [PATCH] Install playwright chromium for mermaid SSR in Docker build --- docs/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/Dockerfile b/docs/Dockerfile index 3465c90..e8722c8 100644 --- a/docs/Dockerfile +++ b/docs/Dockerfile @@ -8,6 +8,7 @@ RUN npm ci FROM deps AS build COPY . . ENV ASTRO_TELEMETRY_DISABLED=1 +RUN npx playwright install --with-deps chromium RUN npm run build # Stage 3: Serve with Caddy