Skip to content

Commit 32edab1

Browse files
committed
Add Dockerfile
1 parent bc0fd77 commit 32edab1

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

Dockerfile

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
2+
FROM node:lts-alpine
3+
4+
# Set working directory
5+
WORKDIR /app
6+
7+
# Copy package files
8+
COPY package.json package-lock.json ./
9+
10+
# Install dependencies without running lifecycle scripts
11+
RUN npm install --ignore-scripts
12+
13+
# Copy all source files
14+
COPY . .
15+
16+
# Build the project
17+
RUN npm run build
18+
19+
# Expose port if needed (optional, MCP may use stdio, so not exposing ports by default)
20+
21+
# Command to run the server
22+
CMD ["node", "dist/src/server/index.js"]

0 commit comments

Comments
 (0)