From 895055124d219f2ccf91fbe2bc0862b53390d001 Mon Sep 17 00:00:00 2001 From: Chase King Date: Wed, 19 Feb 2025 12:01:05 -0500 Subject: [PATCH] Update to docker file --- Dockerfile.playwright | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile.playwright b/Dockerfile.playwright index 6271a937..939f3dac 100644 --- a/Dockerfile.playwright +++ b/Dockerfile.playwright @@ -14,8 +14,8 @@ RUN npm install # Install Playwright browsers RUN npx playwright install --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"]