internationalscholarsprogram commited on
Commit
6533818
·
1 Parent(s): c701395

fix: restore playwright --with-deps to install missing libXfixes

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -35,8 +35,8 @@ RUN pip install --no-cache-dir -r requirements.txt
35
  # Set browser path BEFORE install so Playwright puts browsers here
36
  ENV PLAYWRIGHT_BROWSERS_PATH=/ms-playwright
37
 
38
- # Install Playwright Chromium browser only (system deps already installed above)
39
- RUN playwright install chromium
40
 
41
  # Copy application code
42
  COPY app/ ./app/
 
35
  # Set browser path BEFORE install so Playwright puts browsers here
36
  ENV PLAYWRIGHT_BROWSERS_PATH=/ms-playwright
37
 
38
+ # Install Playwright Chromium browser + all required system deps
39
+ RUN playwright install --with-deps chromium
40
 
41
  # Copy application code
42
  COPY app/ ./app/