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 b011b58 commit 925777bCopy full SHA for 925777b
1 file changed
Dockerfile.mcp
@@ -8,15 +8,18 @@ RUN apt-get update && apt-get install -y \
8
curl \
9
&& rm -rf /var/lib/apt/lists/*
10
11
-# Copy requirements and install Python dependencies
12
-COPY pyproject.toml ./
13
-RUN pip install -e .
14
15
# Copy application code
16
COPY mcp_server.py ./
17
-COPY lib/ ./lib/
+# COPY lib/ ./lib/
+# COPY src/ ./src/
18
COPY .env* ./
19
+# Copy requirements and install Python dependencies
+COPY README.md ./
20
+# COPY pyproject.toml ./
21
+RUN pip install fastmcp>=2.11.2 python-dotenv
22
+
23
# Set environment for production MCP deployment
24
ENV MCP_TRANSPORT=sse
25
ENV ABI_API_BASE=http://api:9879
0 commit comments