mirror of
https://github.com/bluenviron/mediamtx
synced 2025-02-25 16:10:54 +00:00
16 lines
321 B
Docker
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" ]
|