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