2 changed files with 16 additions and 7 deletions
@ -1,25 +1,26 @@
|
||||
FROM registry.sindominio.net/debian |
||||
FROM registry.sindominio.net/nginx |
||||
|
||||
RUN apt-get update && apt-get install -y nginx libnginx-mod-rtmp && apt get clean |
||||
RUN apt-get update && apt-get install -y libnginx-mod-rtmp && apt-get clean |
||||
|
||||
RUN rm -rf /var/www/html/* |
||||
|
||||
# config nginx with rtmp app points |
||||
WORKDIR /tmp/ |
||||
COPY nginx.conf /tmp/ |
||||
COPY nginx-rtmp.conf /tmp/ |
||||
RUN cat /tmp/nginx-rtmp.conf >> /etc/nginx/nginx.conf |
||||
|
||||
RUN mkdir -P /var/www/html/hls && \ |
||||
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/ |
||||
RUN mkdir -p /var/www/assets/ |
||||
COPY assets/styles-sintoniza.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 |
||||
COPY nginx-site-default.conf /etc/nginx/sites-available/default |
||||
|
||||
|
Loading…
Reference in new issue