mirror of
https://github.com/coleam00/Archon.git
synced 2026-01-04 05:38:53 -05:00
The New Archon (Beta) - The Operating System for AI Coding Assistants!
This commit is contained in:
16
original_archon/mcp/Dockerfile
Normal file
16
original_archon/mcp/Dockerfile
Normal file
@@ -0,0 +1,16 @@
|
||||
FROM python:3.12-slim
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
# Copy requirements file and install dependencies
|
||||
COPY requirements.txt .
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
|
||||
# Copy the MCP server files
|
||||
COPY . .
|
||||
|
||||
# Expose port for MCP server
|
||||
EXPOSE 8100
|
||||
|
||||
# Command to run the MCP server
|
||||
CMD ["python", "mcp_server.py"]
|
||||
Reference in New Issue
Block a user