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 d5e5dfe commit 604599bCopy full SHA for 604599b
Dockerfile
@@ -0,0 +1,18 @@
1
+# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
2
+FROM python:3.13-slim
3
+
4
+# Set working directory
5
+WORKDIR /app
6
7
+# Copy local code to the container image.
8
+COPY . /app
9
10
+# Install pip dependencies
11
+RUN pip install --upgrade pip \
12
+ && pip install .
13
14
+# Expose necessary port if any (MCP typically uses stdio, but if needed, uncomment below)
15
+# EXPOSE 8000
16
17
+# Run the MCP Server
18
+CMD ["python", "src/main.py"]
0 commit comments