From ed8cb71ba6b80d17b3ad1ad34cd84111a18928fc Mon Sep 17 00:00:00 2001 From: Jeffrey Smith Date: Thu, 2 Apr 2026 10:05:39 +0000 Subject: [PATCH] Remove redundant npm install from test-runner Dockerfile The Playwright Docker image already ships with playwright and browsers pre-installed. The npm install was failing (exit code 1, hidden by 2>/dev/null) and blocking the build. Co-Authored-By: Claude Opus 4.6 (1M context) --- docker-compose.ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/docker-compose.ci.yml b/docker-compose.ci.yml index e315928..dc547c3 100644 --- a/docker-compose.ci.yml +++ b/docker-compose.ci.yml @@ -29,7 +29,6 @@ services: context: . dockerfile_inline: | FROM mcr.microsoft.com/playwright:v1.52.0-noble - RUN npm install --no-save playwright 2>/dev/null WORKDIR /work COPY ci/ /work/ci/ RUN chmod +x /work/ci/*.sh