# Created by: Claude # Date: 2026-01-01 # Purpose: Dockerfile for Mesh Server # Refs: deployment.md FROM python:3.12-slim WORKDIR /app # Install dependencies COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # Copy application COPY . . # Expose port EXPOSE 8000 # Run server CMD ["python", "-m", "uvicorn", "src.main:app", "--host", "0.0.0.0", "--port", "8000"]