voice_agent / Dockerfile
Ram Narayanan
Minor fix in Dockerfile
8543882
Raw
History Blame Contribute Delete
289 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY pyproject.toml .
RUN pip install --no-cache-dir "openenv-core[core]>=0.1.0" "fastapi>=0.115.0" "pydantic>=2.0.0" "uvicorn>=0.24.0" "requests>=2.31.0"
COPY . .
EXPOSE 7860
CMD ["uvicorn", "server.app:app", "--host", "0.0.0.0", "--port", "7860"]