make nginx build silently
All checks were successful
Publish Docker Image / docker (push) Successful in 1m13s
All checks were successful
Publish Docker Image / docker (push) Successful in 1m13s
This commit is contained in:
parent
b893f23ba5
commit
14ce3e887c
14
Dockerfile
14
Dockerfile
@ -7,12 +7,14 @@ RUN apk update && apk upgrade && \
|
||||
|
||||
# Download and build the latest version of Nginx from source
|
||||
WORKDIR /tmp
|
||||
RUN wget https://nginx.org/download/nginx-1.25.3.tar.gz
|
||||
RUN tar -xzvf nginx-1.25.3.tar.gz
|
||||
WORKDIR /tmp/nginx-1.25.3
|
||||
RUN ./configure --prefix=/usr/local/nginx --sbin-path=/usr/local/sbin/nginx --conf-path=/etc/nginx/nginx.conf
|
||||
RUN make
|
||||
RUN make install
|
||||
RUN wget https://nginx.org/download/nginx-1.25.3.tar.gz && \
|
||||
tar -xzvf nginx-1.25.3.tar.gz && \
|
||||
cd nginx-1.25.3 && \
|
||||
./configure --prefix=/usr/local/nginx --sbin-path=/usr/local/sbin/nginx --conf-path=/etc/nginx/nginx.conf && \
|
||||
make > /dev/null 2>&1 && \
|
||||
make install > /dev/null 2>&1 && \
|
||||
make_status=$? && \
|
||||
if [ $make_status -ne 0 ]; then echo "Nginx build failed"; exit $make_status; fi
|
||||
|
||||
# Cleanup unnecessary files
|
||||
RUN rm -rf /tmp/*
|
||||
|
Loading…
Reference in New Issue
Block a user