mirror of
https://github.com/bluenviron/mediamtx
synced 2025-01-21 22:43:47 +00:00
12 lines
150 B
Docker
12 lines
150 B
Docker
FROM amd64/alpine:3.12
|
|
|
|
RUN apk add --no-cache \
|
|
ffmpeg
|
|
|
|
COPY emptyvideo.ts /
|
|
|
|
COPY start.sh /
|
|
RUN chmod +x /start.sh
|
|
|
|
ENTRYPOINT [ "/start.sh" ]
|