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