| FROM mcr.microsoft.com/playwright:v1.50.0-jammy | |
| ENV PORT=7860 | |
| WORKDIR /app | |
| RUN npm init -y && \ | |
| npm install @playwright/mcp | |
| EXPOSE 7860 | |
| CMD ["npx", "@playwright/mcp@latest", \ | |
| "--port", "7860", \ | |
| "--host", "0.0.0.0", \ | |
| "--headless", \ | |
| "--no-sandbox", \ | |
| "--allowed-hosts", "*", \ | |
| "--isolated"] |