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>
14 lines
147 B
Docker
14 lines
147 B
Docker
FROM node:22-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json package-lock.json* ./
|
|
|
|
RUN npm ci
|
|
|
|
COPY . .
|
|
|
|
RUN npm run build
|
|
|
|
CMD ["node", "dist/index.js"]
|