Dockerfile 197 B

1234567
  1. FROM ubuntu:latest
  2. EXPOSE 1935
  3. RUN apt update -y && apt upgrade -y && apt install -y nginx libnginx-mod-rtmp vim
  4. COPY nginx.conf /etc/nginx/nginx.conf
  5. CMD ["/usr/sbin/nginx", "-g", "daemon off;"]