Fix transcoder Dockerfile to use apt-get for Ubuntu-based image
All checks were successful
Test and Publish Templates / test-and-publish (push) Successful in 21s

This commit is contained in:
Your Name
2025-09-02 09:45:20 +12:00
parent 97edbefa05
commit 298e3a149d

View File

@@ -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