12 lines
No EOL
353 B
Docker
12 lines
No EOL
353 B
Docker
FROM ubuntu:latest
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
COPY ffplayout_0.24.0-rc3-1_amd64.deb /tmp
|
|
|
|
RUN apt update && apt-get install -y ffmpeg
|
|
RUN apt install -y /tmp/ffplayout_0.24.0-rc3-1_amd64.deb
|
|
|
|
EXPOSE 8787
|
|
|
|
CMD [ "/bin/ffplayout", "-i", "--log", "/logs", "--folder", "/video", "--play-mode", "folder", "--config", "/etc/ffplayout/ffplayout.yml"] |