Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Use Node.js 20 with Puppeteer (includes Chrome)
FROM ghcr.io/puppeteer/puppeteer:24.1.0

# Set working directory
WORKDIR /app

# Copy package files
COPY package*.json ./

# Install dependencies
RUN npm ci

# Copy source code
COPY . .

# Build the project
RUN npm run build

# Set user to non-root for security
USER pptruser

# Expose MCP port (stdio transport doesn't need exposed ports, but good practice)
# MCP uses stdio by default when run with npx

# Run the MCP server
CMD ["node", "build/src/index.js"]
Loading