FROM python:3.9-slim
RUN apt-get update && apt-get install -y ffmpeg && apt-get clean
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY src/ ./src/
COPY mcp_audio_registration.json .
COPY .env .
EXPOSE 8080
CMD ["python", "src/mcp_server.py"]
