Jake Shore ebbf4b2da5 Initial commit: Constant Contact MCP Server 2026 Complete Version
- 100+ API tools
- Full Constant Contact API coverage
- Claude Desktop integration
- Railway deployment support
- Docker containerization
- Comprehensive documentation
2026-02-02 06:49:55 -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"]