mirror of
https://github.com/bluenviron/mediamtx.git
synced 2025-12-25 20:41:59 -08:00
11 lines
142 B
Docker
11 lines
142 B
Docker
FROM amd64/alpine:3.14
|
|
|
|
RUN apk add --no-cache \
|
|
ffmpeg
|
|
|
|
COPY *.mkv /
|
|
|
|
COPY start.sh /
|
|
RUN chmod +x /start.sh
|
|
|
|
ENTRYPOINT [ "/start.sh" ]
|