mediamtx/testimages/gstreamer/Dockerfile
2020-11-15 18:17:00 +01:00

16 lines
321 B
Docker

FROM amd64/ubuntu:20.04
RUN apt update && apt install -y --no-install-recommends \
gstreamer1.0-tools \
gstreamer1.0-plugins-good \
gstreamer1.0-plugins-bad \
gstreamer1.0-rtsp \
&& rm -rf /var/lib/apt/lists/*
COPY emptyvideo.ts /
COPY start.sh /
RUN chmod +x /start.sh
ENTRYPOINT [ "/start.sh" ]