From c7ea26475d38ef6ebc7d5c4d6153e1d2319d0a42 Mon Sep 17 00:00:00 2001 From: JennyNou <167806377+JennyNou@users.noreply.github.com> Date: Tue, 31 Mar 2026 10:24:27 -0400 Subject: [PATCH] Update docker file for playwright --- Dockerfile.playwright | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Dockerfile.playwright b/Dockerfile.playwright index 46a2114a..e9dcce23 100644 --- a/Dockerfile.playwright +++ b/Dockerfile.playwright @@ -11,6 +11,11 @@ COPY package*.json ./ # Install dependencies RUN npm install +# Copy playwright-tests package files + authenticated .npmrc, then install +COPY playwright-tests/package*.json ./playwright-tests/ +COPY playwright-tests/.npmrc ./playwright-tests/ +RUN cd playwright-tests && npm install + # Install Playwright browsers RUN npx playwright install chromium --with-deps