mirror of
https://github.com/bluenviron/mediamtx
synced 2025-02-15 19:17:12 +00:00
9 lines
142 B
Docker
9 lines
142 B
Docker
FROM amd64/alpine:3.12
|
|
|
|
RUN apk add --no-cache \
|
|
nginx-mod-rtmp
|
|
|
|
COPY nginx.conf /etc/nginx/
|
|
|
|
ENTRYPOINT [ "nginx", "-g", "daemon off;" ]
|