Archon/mcp/Dockerfile
2025-02-28 08:35:18 -06:00

17 lines
307 B
Docker

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"]