FROM mcr.microsoft.com/playwright:focal ENV PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD 1 WORKDIR /app COPY package*.json ./ RUN npm update RUN npm install COPY . . RUN npx playwright install --with-deps EXPOSE 3000 CMD ["npm", "start"]