FROM python:3.10-slim WORKDIR /app RUN apt-get update && apt-get install -y ffmpeg git COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt COPY . . # We don't expose any ports because LiveKit agents use outbound WebSocket connections CMD ["python", "-u", "agent.py", "start"]