mediamtx/testimages/nginx-rtmp/Dockerfile

9 lines
142 B
Docker
Raw Normal View History

2020-10-03 19:10:41 +00:00
FROM amd64/alpine:3.12
RUN apk add --no-cache \
nginx-mod-rtmp
COPY nginx.conf /etc/nginx/
ENTRYPOINT [ "nginx", "-g", "daemon off;" ]