13 lines
234 B
Docker
13 lines
234 B
Docker
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"] |