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>
22 lines
425 B
Docker
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"]
|