I have a simple Dockerfile:FROM
mcr.microsoft.com/playwright:v1.35.0-jammy WORKDIR /app COPY . /app RUN
npm install CMD ["node", "index.js"]which doesn't do so much and
installs playwrights base image which contains chromium. And I have an
express se...