From 541a26c3544e656a9682f438ce3e4416d1bcdac6 Mon Sep 17 00:00:00 2001 From: Christian Gick Date: Fri, 20 Feb 2026 17:22:36 +0200 Subject: [PATCH] fix: revert libstdc++ copy that broke GLIBC compat Co-Authored-By: Claude Opus 4.6 --- Dockerfile | 3 --- 1 file changed, 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 356162f..3b82b1e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -49,9 +49,6 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt -# Copy libstdc++ from build stage to match CXXABI version used by patched FFI -COPY --from=rust-build /usr/lib/x86_64-linux-gnu/libstdc++.so.6 /usr/lib/x86_64-linux-gnu/libstdc++.so.6 - # Overwrite installed FFI binary with patched version (HKDF + key_ring_size support) COPY --from=rust-build /build/livekit-rust-sdks/target/release/liblivekit_ffi.so /patched/ ENV LIVEKIT_LIB_PATH=/patched/liblivekit_ffi.so