From 298e3a149dae266f2b76b4082d999a069181c03e Mon Sep 17 00:00:00 2001 From: Your Name Date: Tue, 2 Sep 2025 09:45:20 +1200 Subject: [PATCH] Fix transcoder Dockerfile to use apt-get for Ubuntu-based image --- squashkiwi-streaming/config/transcoder/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/squashkiwi-streaming/config/transcoder/Dockerfile b/squashkiwi-streaming/config/transcoder/Dockerfile index f5135b7..c877ee8 100644 --- a/squashkiwi-streaming/config/transcoder/Dockerfile +++ b/squashkiwi-streaming/config/transcoder/Dockerfile @@ -1,7 +1,9 @@ FROM linuxserver/ffmpeg:latest # Install fonts for text overlay -RUN apk add --no-cache ttf-dejavu +RUN apt-get update && \ + apt-get install -y --no-install-recommends fonts-dejavu-core && \ + rm -rf /var/lib/apt/lists/* # Copy transcoder script COPY transcoder.sh /transcoder.sh