forked from External/mediamtx
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;" ]
|