From ce2fb5d012ed3dd350319ead69882dd73a838305 Mon Sep 17 00:00:00 2001 From: waychan23 Date: Fri, 12 Dec 2025 15:08:01 +0800 Subject: [PATCH] fix: (for docker installation) Web Pages connector not working due to lack of dependencies --- surfsense_backend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/surfsense_backend/Dockerfile b/surfsense_backend/Dockerfile index 13b5dc097..fa3aaeae8 100644 --- a/surfsense_backend/Dockerfile +++ b/surfsense_backend/Dockerfile @@ -59,7 +59,7 @@ RUN python -c "try:\n from docling.document_converter import DocumentConverte # Install Playwright browsers for web scraping if needed RUN pip install playwright && \ - playwright install chromium + playwright install chromium --with-deps # Copy source code COPY . .