From b0a37eab38858e54b7988210ba1d4ca9f63795f7 Mon Sep 17 00:00:00 2001 From: ducoterra Date: Fri, 22 May 2026 14:45:55 -0400 Subject: [PATCH] fix portaudio bug --- Containerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Containerfile b/Containerfile index 244c546..9a73e60 100644 --- a/Containerfile +++ b/Containerfile @@ -1,7 +1,7 @@ FROM python:3.13-slim -# Install uv -RUN pip install --no-cache-dir uv +# Install PortAudio (required by sounddevice) and 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 vibe_bot /app