From 20eb573897becad9052ba0a5dfbe5b821b044626 Mon Sep 17 00:00:00 2001 From: Paul Date: Mon, 5 Aug 2024 13:34:56 +0200 Subject: [PATCH] Fix unicode.so loading `unicode.so` is dynamically linked against glibc but Alpine only comes with musl. Installing the compatibility layer fixes it. Fix https://github.com/advplyr/audiobookshelf/issues/3231 Fix https://github.com/advplyr/audiobookshelf/issues/3234 Close https://github.com/advplyr/audiobookshelf/pull/3235 --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index fe68b304..0d586710 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,6 +16,7 @@ RUN apk update && \ tzdata \ ffmpeg \ make \ + gcompat \ python3 \ g++ \ tini