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>
This commit is contained in:
21
dockerfiles/kicad-mcp/Dockerfile
Normal file
21
dockerfiles/kicad-mcp/Dockerfile
Normal file
@@ -0,0 +1,21 @@
|
||||
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"]
|
||||
Reference in New Issue
Block a user