12 lines
207 B
Docker
12 lines
207 B
Docker
FROM alpine:3.20
|
|
|
|
RUN apk add --no-cache ffmpeg 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"] |