FROM linuxserver/ffmpeg:latest # Install fonts for text overlay RUN apk add --no-cache ttf-dejavu # Copy transcoder script COPY transcoder.sh /transcoder.sh RUN chmod +x /transcoder.sh # Create score file directory RUN mkdir -p /tmp ENTRYPOINT ["/transcoder.sh"]