|
|
|
FROM registry.sindominio.net/debian
|
|
|
|
|
|
|
|
RUN apt-get update && apt-get install -y nginx libnginx-mod-rtmp && apt get clean
|
|
|
|
|
|
|
|
RUN rm -rf /var/www/html/*
|
|
|
|
|
|
|
|
# config nginx with rtmp app points
|
|
|
|
WORKDIR /tmp/
|
|
|
|
COPY nginx.conf /tmp/
|
|
|
|
RUN cat /tmp/nginx-rtmp.conf >> /etc/nginx/nginx.conf
|
|
|
|
|
|
|
|
RUN mkdir -P /var/www/html/hls && \
|
|
|
|
chmod 777 /var/www/html/hls
|
|
|
|
|
|
|
|
# poner el index.html css y js
|
|
|
|
COPY index.html /var/www/html/
|
|
|
|
|
|
|
|
RUN mkdir -P /var/www/assets/
|
|
|
|
COPY assets/styles-mirar.css /var/www/html/assets/
|
|
|
|
COPY assets/video-js-7.10.2.min.css /var/www/html/assets/video-js.min.css
|
|
|
|
COPY assets/video-js-7.10.2.min.js /var/www/html/assets/video-js.min.js
|
|
|
|
COPY assets/jquery-3.5.1.slim.min.js /var/www/html/assets/jquery-slim.min.js
|
|
|
|
|
|
|
|
# copiar la configuración por defecto de nginx con nuestros cambios incluidos
|
|
|
|
COPY nginx-site-default.conf /etc/nginx/sites-available/default
|