
All checks were successful
Test and Publish Templates / test-and-publish (push) Successful in 21s
15 lines
358 B
Docker
15 lines
358 B
Docker
FROM linuxserver/ffmpeg:latest
|
|
|
|
# Install fonts for text overlay
|
|
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
|
|
RUN chmod +x /transcoder.sh
|
|
|
|
# Create score file directory
|
|
RUN mkdir -p /tmp
|
|
|
|
ENTRYPOINT ["/transcoder.sh"] |