Files
KNEL-AIMiddleware/dockerfiles/kicad-mcp/Dockerfile
Charles N Wyble e33f407756 chore: add dockerfiles directory for custom container definitions
Track custom Dockerfiles created for repositories
that don't include native container definitions.

Organized by service name in dockerfiles/ subdirectory:
- kicad-mcp
- blender-mcp
- freecad-mcp
- docker-mcp
- proxmox-mcp
- mcp-cloudron
- bash-language-server
- context7-mcp
- ghost-mcp
- discourse-mcp
- matomo-mcp
- gimp-mcp
- snipeit-mcp
- wordpress-mcp
- drawio-mcp
- audiobook-mcp

💘 Generated with Crush

Assisted-by: GLM-4.7 via Crush <crush@charm.land>
2026-01-21 17:27:15 -05:00

22 lines
425 B
Docker

FROM node:22-alpine
# Install Python 3 and required dependencies
RUN apk add --no-cache python3 py3-pip
WORKDIR /app
COPY package.json package-lock.json* ./
RUN npm ci --ignore-scripts
COPY . .
# Install Python dependencies (use --break-system-packages since this is a container)
RUN pip3 install --no-cache-dir --break-system-packages -r requirements.txt
RUN npm run build
EXPOSE 3000
CMD ["node", "dist/index.js"]