Skip to content

Commit 6ce4744

Browse files
committed
fix: add Dockerfile for Glama MCP directory listing
1 parent 200252e commit 6ce4744

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

Dockerfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
FROM node:22-alpine
2+
3+
WORKDIR /app
4+
5+
COPY package*.json ./
6+
RUN npm ci --only=production || npm install
7+
8+
COPY . .
9+
RUN npm run build
10+
11+
ENTRYPOINT ["node", "build/index.js"]

0 commit comments

Comments
 (0)