mediamtx/test-images/ffmpeg/Dockerfile

12 lines
150 B
Docker
Raw Normal View History

2020-05-10 19:32:40 +00:00
FROM amd64/alpine:3.11
RUN apk add --no-cache \
ffmpeg
COPY emptyvideo.ts /
COPY start.sh /
RUN chmod +x /start.sh
ENTRYPOINT [ "/start.sh" ]