Skip to content

Commit 604599b

Browse files
Add Dockerfile
1 parent d5e5dfe commit 604599b

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

Dockerfile

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)