mirror of
https://github.com/bluenviron/mediamtx
synced 2025-02-19 04:56:53 +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;" ]
|