1
0
Fork 0
forked from External/mediamtx
mediamtx/testimages/gstreamer/Dockerfile
2020-09-20 10:21:37 +02:00

16 lines
313 B
Docker

FROM amd64/alpine:3.12
RUN apk add --no-cache \
gstreamer-tools \
gst-plugins-good \
gst-plugins-bad \
&& apk add --no-cache \
-X http://dl-cdn.alpinelinux.org/alpine/edge/testing \
gst-rtsp-server
COPY emptyvideo.ts /
COPY start.sh /
RUN chmod +x /start.sh
ENTRYPOINT [ "/start.sh" ]