From a897d1cd0070b82e6defbc579b5b92ccdfbf2950 Mon Sep 17 00:00:00 2001 From: Ken Date: Tue, 26 May 2026 22:38:19 +0000 Subject: [PATCH] fix: remove non-existent @anthropic-ai/playwright-cli from Dockerfile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Package doesn't exist on npm. Playwright is already installed via the Python backend deps (uv sync) and 'uv run playwright install chromium'. 🤖 Generated with [Amplifier](https://github.com/microsoft/amplifier) Co-Authored-By: Amplifier <240397093+microsoft-amplifier@users.noreply.github.com> --- Dockerfile | 3 --- 1 file changed, 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1824908..650ba4c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,9 +30,6 @@ RUN curl -fsSL https://deb.nodesource.com/setup_22.x | bash - \ && apt-get install -y --no-install-recommends nodejs \ && rm -rf /var/lib/apt/lists/* -# Install @anthropic-ai/playwright-cli globally via npm -RUN npm install -g @anthropic-ai/playwright-cli - # Install uv via pip RUN pip install uv