From 7d1ecb01b8b68d6b8e3492faf11721ce17e2feb1 Mon Sep 17 00:00:00 2001 From: Chase King Date: Wed, 5 Mar 2025 16:45:48 -0500 Subject: [PATCH] Reverted dockerfile --- Dockerfile.playwright | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile.playwright b/Dockerfile.playwright index 6271a937..46a2114a 100644 --- a/Dockerfile.playwright +++ b/Dockerfile.playwright @@ -1,4 +1,4 @@ -FROM node:16 +FROM node:20 FROM mcr.microsoft.com/playwright:v1.48.0-noble @@ -12,10 +12,10 @@ COPY package*.json ./ RUN npm install # Install Playwright browsers -RUN npx playwright install --with-deps +RUN npx playwright install chromium --with-deps + +# Install jq +RUN apt-get install -y jq # Copy the rest of the application code COPY . . - -# Run Playwright tests -CMD ["npx", "playwright", "test"]