This commit is contained in:
Tim
2026-04-05 21:24:05 +02:00
commit 922d00f52f
4 changed files with 59 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM jrottenberg/ffmpeg:7.1.1-alpine320
# no glibc
RUN apk add --no-cache su-exec
RUN mkdir -p /output
COPY stream-archive.sh /stream-archive.sh
RUN chmod +x /stream-archive.sh
VOLUME ["/output"]
ENTRYPOINT ["/stream-archive.sh"]