🐛(agent) restore missing system deps in Docker image

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.
This commit is contained in:
lebaudantoine
2025-12-26 16:13:36 +01:00
committed by aleb_the_flash
parent 0daa6d0432
commit 3af115dafb

View File

@@ -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