From 64c312bb75fb3cb6aacc1ab67166751ede610858 Mon Sep 17 00:00:00 2001 From: Liam Date: Thu, 26 Oct 2023 12:25:21 +0100 Subject: [PATCH] bump nginx --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 01a0b83..4e16d5c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,9 +7,9 @@ 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.2.tar.gz -RUN tar -xzvf nginx-1.25.2.tar.gz -WORKDIR /tmp/nginx-1.25.2 +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