
All checks were successful
Test and Publish Templates / test-and-publish (push) Successful in 21s
13 lines
266 B
Docker
13 lines
266 B
Docker
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"] |