7.7777777777
Some checks failed
Publish Docker Image / docker (push) Failing after 29s

This commit is contained in:
Lee 2023-10-26 11:57:30 +01:00
parent b51814bba8
commit 5eb05fcdc4

@ -13,14 +13,14 @@ RUN tar -zxvf nginx-*.tar.gz
RUN git clone https://github.com/aperezdc/ngx-fancyindex.git ngx-fancyindex
# Build Nginx from source
RUN cd nginx-*
WORKDIR /tmp/nginx-*
RUN ./configure --prefix=/usr/local/nginx \
--sbin-path=/usr/local/sbin/nginx \
--conf-path=/etc/nginx/nginx.conf \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--with-http_ssl_module \
--add-module=../ngx-fancyindex
--sbin-path=/usr/local/sbin/nginx \
--conf-path=/etc/nginx/nginx.conf \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--with-http_ssl_module \
--add-module=../ngx-fancyindex
RUN make
RUN make install