Skip to content
This repository was archived by the owner on Mar 6, 2026. It is now read-only.

Commit 1e76242

Browse files
feat(mcp-server): add Dockerfile for Glama server inspection
Enables automated tool detection and server inspection on the Glama MCP directory listing. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 3645ce9 commit 1e76242

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

extensions/mcp-server/Dockerfile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
FROM node:18-alpine AS builder
2+
WORKDIR /app
3+
COPY package.json package-lock.json ./
4+
RUN npm ci
5+
COPY tsconfig.json ./
6+
COPY src ./src
7+
RUN npm run build
8+
9+
FROM node:18-alpine
10+
WORKDIR /app
11+
COPY --from=builder /app/dist ./dist
12+
COPY --from=builder /app/node_modules ./node_modules
13+
COPY --from=builder /app/package.json ./
14+
EXPOSE 3000
15+
ENTRYPOINT ["node", "dist/cli.js"]

0 commit comments

Comments
 (0)