File size: 331 Bytes
03c389c ffbc00f f3baa28 ffbc00f f3baa28 3968145 bdd4365 d521e0c 1a1269b bdd4365 a315a30 3d6da94 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 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"] |