- gitea-mcp, mcp-grafana: bump Go from 1.24 to 1.26 (upstream go.mod now requires >= 1.26.x) - proxmox-mcp: constrain requires-python to >=3.10 for fastmcp compat - elasticsearch-mcp: add missing vendor repo to CloneVendorRepos.sh (elastic/mcp-server-elasticsearch) - context7-mcp: add .npmrc to disable pnpm v10 strict built-deps check - drawio-mcp: exclude dev-proxy package from build (upstream TS errors), build with pnpm v10 + .npmrc - discourse-mcp, ghidra-mcp: remain blocked (upstream issues)
21 lines
537 B
Docker
21 lines
537 B
Docker
FROM node:22-alpine
|
|
|
|
# Install pnpm
|
|
RUN npm install -g pnpm
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json pnpm-lock.yaml ./
|
|
|
|
# Disable strict built-dependencies check (pnpm v10 exits on ignored builds)
|
|
RUN echo "strict-built-dependencies=false" > .npmrc && \
|
|
pnpm install --no-frozen-lockfile
|
|
|
|
COPY . .
|
|
|
|
# Build all packages except dev-proxy (has upstream TS errors).
|
|
# Plugin must be built before server (server copies plugin output).
|
|
RUN pnpm -r --filter '!drawio-mcp-dev-proxy' build
|
|
|
|
CMD ["node", "packages/drawio-mcp-server/build/index.js"]
|