We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b200c5 commit 365e5bcCopy full SHA for 365e5bc
1 file changed
Dockerfile
@@ -0,0 +1,19 @@
1
+FROM node:22-slim AS builder
2
+WORKDIR /app
3
+COPY package*.json ./
4
+COPY tsconfig.json ./
5
+RUN npm ci
6
+COPY src/ ./src/
7
+COPY data/ ./data/
8
+COPY bin/ ./bin/
9
+RUN npm run build
10
+
11
+FROM node:22-slim
12
13
+COPY --from=builder /app/dist ./dist
14
+COPY --from=builder /app/data ./data
15
+COPY --from=builder /app/node_modules ./node_modules
16
17
18
+ENV NODE_ENV=production
19
+ENTRYPOINT ["node", "dist/bin/runapi-mcp.js"]
0 commit comments