# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
FROM node:lts-alpine
WORKDIR /app
# Copy package.json and package-lock.json
COPY package*.json ./
# Install dependencies (ignore scripts if any issues with native builds)
RUN npm install --ignore-scripts
# Copy the rest of the application
COPY . .
# Build the TypeScript source
RUN npm run build
# Expose PORT if needed (optional)
# Start the MCP server
CMD ["node", "build/index.js"]