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 9a9a465 commit 03d49a7Copy full SHA for 03d49a7
Dockerfile
@@ -0,0 +1,22 @@
1
+# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
2
+FROM node:lts-alpine
3
+
4
+# Create app directory
5
+WORKDIR /app
6
7
+# Copy package.json and package-lock.json
8
+COPY package*.json ./
9
10
+# Install dependencies, ignoring any prepare scripts
11
+RUN npm install --ignore-scripts
12
13
+# Copy the rest of the application code
14
+COPY . .
15
16
+# Build the application
17
+RUN npm run build
18
19
+# Expose any port if needed (MCP uses stdio, so not required for now)
20
21
+# Set the default command
22
+CMD [ "node", "build/index.js", "--site", "global" ]
0 commit comments