From ed76dd2aa55c1551da2697f031b37abb0761bfd2 Mon Sep 17 00:00:00 2001 From: Nicholas Kissel Date: Fri, 6 Feb 2026 15:13:32 -0800 Subject: [PATCH] fix(website): install Playwright system deps in Docker build --- website/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/Dockerfile b/website/Dockerfile index 1a55d3449a..6b9ba06b3b 100644 --- a/website/Dockerfile +++ b/website/Dockerfile @@ -60,8 +60,8 @@ ENV PUBLIC_TYPESENSE_API_KEY=${PUBLIC_TYPESENSE_API_KEY} WORKDIR /app/website -# Re-install Playwright browsers for the correct version (pnpm may install a different version) -RUN pnpm exec playwright install chromium +# Install Playwright browsers and system dependencies for mermaid rendering +RUN pnpm exec playwright install --with-deps chromium # Build the website (static export to 'dist' directory) RUN pnpm run build