2020-09-19 21:46:46 +02:00
|
|
|
FROM buildpack-deps:focal
|
|
|
|
|
|
|
|
ENV NGINX_VERSION nginx-1.19.2
|
|
|
|
ENV NGINX_RTMP_MODULE_VERSION 1.2.1
|
|
|
|
|
|
|
|
RUN apt-get update && \
|
|
|
|
apt-get install -y ca-certificates openssl libssl-dev ffmpeg && \
|
|
|
|
apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
|
|
|
2020-09-19 22:05:25 +02:00
|
|
|
RUN mkdir -p /tmp/build/ && \
|
|
|
|
cd /tmp/build/ && \
|
2020-09-19 21:46:46 +02:00
|
|
|
wget -O ${NGINX_VERSION}.tar.gz https://nginx.org/download/${NGINX_VERSION}.tar.gz && \
|
|
|
|
tar -zxf ${NGINX_VERSION}.tar.gz
|
|
|
|
|
2020-09-19 22:05:25 +02:00
|
|
|
RUN cd /tmp/build/ && \
|
|
|
|
git clone https://github.com/sergey-dryabzhinsky/nginx-rtmp-module.git
|
2020-09-19 21:46:46 +02:00
|
|
|
|
2020-09-19 22:05:25 +02:00
|
|
|
RUN cd /tmp/build/${NGINX_VERSION} && \
|
2020-09-19 21:46:46 +02:00
|
|
|
./configure \
|
|
|
|
--sbin-path=/usr/local/sbin/nginx \
|
|
|
|
--conf-path=/etc/nginx/nginx.conf \
|
|
|
|
--error-log-path=/var/log/nginx/error.log \
|
|
|
|
--pid-path=/var/run/nginx/nginx.pid \
|
|
|
|
--lock-path=/var/lock/nginx/nginx.lock \
|
|
|
|
--http-log-path=/var/log/nginx/access.log \
|
|
|
|
--http-client-body-temp-path=/tmp/nginx-client-body \
|
|
|
|
--with-http_ssl_module \
|
|
|
|
--with-threads \
|
2020-09-19 22:05:25 +02:00
|
|
|
--with-select_module \
|
|
|
|
--with-poll_module \
|
|
|
|
--with-file-aio \
|
|
|
|
--with-stream=dynamic \
|
|
|
|
--with-stream_ssl_module \
|
|
|
|
--with-stream_realip_module \
|
|
|
|
--with-stream_ssl_preread_module \
|
|
|
|
--with-compat \
|
|
|
|
--add-module=../nginx-rtmp-module \
|
|
|
|
--with-debug\
|
|
|
|
-builddir=${NGINX_VERSION} \
|
2020-09-19 21:46:46 +02:00
|
|
|
make -j $(getconf _NPROCESSORS_ONLN) && \
|
|
|
|
make install && \
|
|
|
|
mkdir /var/lock/nginx && \
|
|
|
|
rm -rf /tmp/build
|
|
|
|
|
|
|
|
RUN ln -sf /dev/stdout /var/log/nginx/access.log && \
|
|
|
|
ln -sf /dev/stderr /var/log/nginx/error.log
|
|
|
|
|
|
|
|
COPY startscript.sh /usr/sbin/startscript.sh
|
2020-09-19 21:55:02 +02:00
|
|
|
COPY nginx_ingest.conf /etc/nginx/nginx_ingest.conf
|
|
|
|
COPY nginx_restream.conf /etc/nginx/nginx_ingest.conf
|
|
|
|
|
2020-09-19 21:46:46 +02:00
|
|
|
|
|
|
|
EXPOSE 1935
|
|
|
|
CMD ["bash", "/usr/sbin/startscript.sh"]
|