fix portaudio bug

This commit is contained in:
2026-05-22 14:45:55 -04:00
parent 6fce25ffa2
commit b0a37eab38
+2 -2
View File
@@ -1,7 +1,7 @@
FROM python:3.13-slim FROM python:3.13-slim
# Install uv # Install PortAudio (required by sounddevice) and uv
RUN pip install --no-cache-dir uv RUN apt-get update && apt-get install -y --no-install-recommends portaudio19-dev && rm -rf /var/lib/apt/lists/* && pip install --no-cache-dir uv
# Copy the project into the image # Copy the project into the image
COPY vibe_bot /app COPY vibe_bot /app