Skip to content

Commit 8edef70

Browse files
committed
feat: update nginx 1.24.0, pcre2 10.42, zlib 1.2.13, openssl 1.1.1t
1 parent b9b8490 commit 8edef70

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

src/.env

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
NGINX_VERSION=1.23.1
2-
NGINX_SHASUM=17015c7a73ba4ec8c64c7d3a09d0c71892740a8d
1+
NGINX_VERSION=1.24.0
2+
NGINX_SHASUM=fec561c95c0320f1860c0d55a8724cd45e5cc238

src/Dockerfile.debian

+9-9
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,21 @@ RUN apt-get update && \
1414
apt install -y wget curl && mkdir -p /usr/src
1515

1616
RUN cd /usr/src && \
17-
wget https://github.com/PhilipHazel/pcre2/releases/download/pcre2-10.39/pcre2-10.39.tar.gz && \
18-
tar zxvf pcre2-10.39.tar.gz && \
19-
cd pcre2-10.39 && \
17+
wget https://github.com/PhilipHazel/pcre2/releases/download/pcre2-10.42/pcre2-10.42.tar.gz && \
18+
tar zxvf pcre2-10.42.tar.gz && \
19+
cd pcre2-10.42 && \
2020
./configure && make && make install
2121

2222
RUN cd /usr/src && \
23-
wget https://www.zlib.net/zlib-1.2.12.tar.gz && \
24-
tar zxvf zlib-1.2.12.tar.gz && \
25-
cd zlib-1.2.12 && \
23+
wget https://www.zlib.net/zlib-1.2.13.tar.gz && \
24+
tar zxvf zlib-1.2.13.tar.gz && \
25+
cd zlib-1.2.13 && \
2626
./configure && make && make install
2727

2828
RUN cd /usr/src && \
29-
wget http://www.openssl.org/source/openssl-1.1.1k.tar.gz && \
30-
tar zxvf openssl-1.1.1k.tar.gz && \
31-
cd openssl-1.1.1k && \
29+
wget http://www.openssl.org/source/openssl-1.1.1t.tar.gz && \
30+
tar zxvf openssl-1.1.1t.tar.gz && \
31+
cd openssl-1.1.1t && \
3232
./config && make && make install
3333

3434
RUN cd /usr/src && \

0 commit comments

Comments
 (0)