Files
microdao-daarion/services/chandra-service/Dockerfile
Apple 5290287058 feat: implement TTS, Document processing, and Memory Service /facts API
- TTS: xtts-v2 integration with voice cloning support
- Document: docling integration for PDF/DOCX/PPTX processing
- Memory Service: added /facts/upsert, /facts/{key}, /facts endpoints
- Added required dependencies (TTS, docling)
2026-01-17 08:16:37 -08:00

28 lines
462 B
Docker

FROM python:3.11-slim
WORKDIR /app
# Install system dependencies
RUN apt-get update && apt-get install -y \
curl \
git \
&& rm -rf /var/lib/apt/lists/*
# Install Python dependencies
RUN pip install --no-cache-dir \
fastapi \
uvicorn \
httpx \
pydantic \
python-multipart \
pillow
# Copy service files
COPY . /app
# Expose port
EXPOSE 8002
# Run service
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8002"]