pipecat / Dockerfile
Deadmon's picture
Update Dockerfile
93e49e4 verified
raw
history blame
195 Bytes
FROM python:3.11-slim
WORKDIR /pipecat
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 7860
CMD ["uvicorn", "bot_runner:app", "--host", "0.0.0.0", "--port", "7860", "--reload"]