Jake Shore 8f64fc613b Initial commit: Wave MCP Server 2026 Complete Version
- 100+ API tools
- Full Wave API coverage
- Claude Desktop integration
- Railway deployment support
- Docker containerization
- Comprehensive documentation
2026-02-02 06:50:53 -05:00

17 lines
161 B
Docker

FROM node:18-alpine
WORKDIR /app
COPY package*.json ./
COPY tsconfig.json ./
RUN npm ci
COPY src ./src
RUN npm run build
EXPOSE 3000
CMD ["npm", "start"]