Skip to content

Commit 925777b

Browse files
committed
fix: Greatly simplified Dockerfile.mcp
1 parent b011b58 commit 925777b

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

Dockerfile.mcp

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,18 @@ RUN apt-get update && apt-get install -y \
88
curl \
99
&& rm -rf /var/lib/apt/lists/*
1010

11-
# Copy requirements and install Python dependencies
12-
COPY pyproject.toml ./
13-
RUN pip install -e .
1411

1512
# Copy application code
1613
COPY mcp_server.py ./
17-
COPY lib/ ./lib/
14+
# COPY lib/ ./lib/
15+
# COPY src/ ./src/
1816
COPY .env* ./
1917

18+
# Copy requirements and install Python dependencies
19+
COPY README.md ./
20+
# COPY pyproject.toml ./
21+
RUN pip install fastmcp>=2.11.2 python-dotenv
22+
2023
# Set environment for production MCP deployment
2124
ENV MCP_TRANSPORT=sse
2225
ENV ABI_API_BASE=http://api:9879

0 commit comments

Comments
 (0)