feat: update readme and docker compose file

This commit is contained in:
Sabiha Khan 2025-09-11 19:08:17 +05:30
parent 4ef1ff92b1
commit 606398b427
2 changed files with 84 additions and 35 deletions

View file

@ -11,8 +11,13 @@ RUN apt-get update && apt-get install -y \
# Copy and install requirements
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Force reinstall of pipecat on every build (cache bust)
ARG CACHEBUST=1
RUN pip install 'git+https://github.com/dograh-hq/pipecat.git@main#egg=pipecat-ai[cartesia,deepgram,openai,elevenlabs,groq,google,azure]'
COPY . ./api
ENV PYTHONPATH=/app