golanggohlsrtmpwebrtcmedia-serverobs-studiortcprtmp-proxyrtmp-serverrtprtsprtsp-proxyrtsp-relayrtsp-serversrtstreamingwebrtc-proxy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
321 B
15 lines
321 B
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" ]
|
|
|