From 5b7ac06bfc4f9f4a1e7679c9b0331a26222aee93 Mon Sep 17 00:00:00 2001 From: Zach Clendenen Date: Tue, 4 Aug 2026 12:29:17 -0500 Subject: [PATCH] fix: symlink libshaderc.so.1 for pcsx2 --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index c53c848..55e4d06 100644 --- a/Dockerfile +++ b/Dockerfile @@ -280,6 +280,9 @@ RUN \ ln -s \ /opt/duckstation/AppRun \ /usr/bin/duckstation-qt && \ + ln -s \ + /opt/duckstation/usr/bin/libshaderc_shared.so \ + /usr/lib/x86_64-linux-gnu/libshaderc.so.1 && \ echo "**** install flycast ****" && \ FLYCAST_URL=$(curl -sX GET "https://api.github.com/repos/flyinghead/flycast/releases/latest" \ | awk -F '(": "|")' '/browser.*.AppImage/ {print $3}') && \