9 lines
171 B
Docker
9 lines
171 B
Docker
FROM docker.io/library/alpine:3.23
|
|
|
|
RUN apk add --no-cache curl ca-certificates nginx-mod-rtmp librtmp ffmpeg nginx
|
|
|
|
COPY nginx.conf /etc/nginx/nginx.conf
|
|
|
|
CMD ["nginx"]
|
|
|