12 lines
201 B
Docker
12 lines
201 B
Docker
FROM debian:latest
|
|
|
|
WORKDIR /root/
|
|
|
|
RUN apt update \
|
|
&& apt install -y python3 curl ffmpeg
|
|
|
|
COPY m3u8-restream.sh .
|
|
WORKDIR /var/www/html
|
|
|
|
CMD python3 -m http.server -d live/ & /root/m3u8-restream.sh
|