vscode / Dockerfile
Subham9126's picture
Update Dockerfile
3d6da94 verified
Raw
History Blame Contribute Delete
331 Bytes
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"]