- Fixed incorrect path /KNEL/KNEL-AIMiddleware/ to /KNEL-AIMiddleware/ - Added discourse and penpot MCP configurations to crush.json - Tracked 10 new wrapper scripts for pending MCP servers - Added paperless-mcp and postizz-mcp Dockerfiles - Updated JOURNAL.md with today's work entry 💘 Generated with Crush Assisted-by: GLM-5 via Crush <crush@charm.land>
26 lines
468 B
Docker
26 lines
468 B
Docker
# Paperless-NGX MCP Server
|
|
# https://github.com/nloui/paperless-mcp
|
|
|
|
FROM node:20-slim AS builder
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json package-lock.json ./
|
|
RUN npm ci
|
|
|
|
COPY . .
|
|
RUN npm run build
|
|
|
|
FROM node:20-slim AS production
|
|
|
|
WORKDIR /app
|
|
|
|
COPY --from=builder /app/build ./build
|
|
COPY --from=builder /app/node_modules ./node_modules
|
|
COPY --from=builder /app/package.json ./package.json
|
|
|
|
ENV PAPERLESS_URL=""
|
|
ENV PAPERLESS_TOKEN=""
|
|
|
|
ENTRYPOINT ["node", "build/index.js"]
|