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"]