From 3af115dafb6ed1b74202194287309dc4fc72cf03 Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Fri, 26 Dec 2025 16:13:36 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B(agent)=20restore=20missing=20syste?= =?UTF-8?q?m=20deps=20in=20Docker=20image?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Some system dependencies were unexpectedly missing, causing the LiveKit agent framework to fail at runtime. Install the required dependencies based on runtime error logs. This fixes Docker image failures in the remote (staging) environment. --- src/agents/Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/agents/Dockerfile b/src/agents/Dockerfile index dcd2ebf2..558d1463 100644 --- a/src/agents/Dockerfile +++ b/src/agents/Dockerfile @@ -1,5 +1,11 @@ FROM python:3.13-slim AS base +# Install system dependencies required by LiveKit +RUN apt-get update && apt-get install -y \ + libglib2.0-0 \ + libgobject-2.0-0 \ + && rm -rf /var/lib/apt/lists/* + FROM base AS builder WORKDIR /builder