mirror of
https://github.com/bluenviron/mediamtx.git
synced 2026-01-23 20:09:49 -08:00
8 lines
142 B
Docker
8 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;" ]
|