From 7e14ebb644e9bb5878f1340bc44ccfa20b4ff756 Mon Sep 17 00:00:00 2001 From: bilal Date: Fri, 19 Jun 2026 01:15:35 +0300 Subject: [PATCH] Add remaining Steam shared-library dependencies. Install libbz2 and libibus for 64/32-bit runtime to resolve steamui/webhelper missing library errors. Co-authored-by: Cursor --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 09cf3fd..9f2bb96 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,6 +33,8 @@ RUN apt-get update && \ libxcb-res0 libxcb-res0:i386 \ libvpx7 libvpx7:i386 \ libvdpau1 libvdpau1:i386 \ + libbz2-1.0 libbz2-1.0:i386 \ + libibus-1.0-5 libibus-1.0-5:i386 \ && ln -sf /lib/x86_64-linux-gnu/libvpx.so.7 /lib/x86_64-linux-gnu/libvpx.so.6 \ && ln -sf /lib/i386-linux-gnu/libvpx.so.7 /lib/i386-linux-gnu/libvpx.so.6 \ && locale-gen en_US.UTF-8 \