File tree 4 files changed +8
-7
lines changed
4 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -4,12 +4,13 @@ Nginx Development Environment based on official docker image.
4
4
5
5
## Docker Image Name
6
6
7
- ` docker pull soulteary/prebuilt-nginx-modules:base-1.21.5 `
7
+ ` docker pull soulteary/prebuilt-nginx-modules:base-1.21.6 `
8
8
9
9
## Nginx Versions
10
10
11
11
Below are other available nginx versions.
12
12
13
+ - 1.21.6
13
14
- 1.21.5
14
15
- 1.21.4
15
16
- 1.21.3
Original file line number Diff line number Diff line change 1
- NGINX_VERSION = 1.21.5
2
- NGINX_SHASUM = c63c01da947ac925ac682a43bf097762a2cc9287
1
+ NGINX_VERSION = 1.21.6
2
+ NGINX_SHASUM = 3e6d39a714f6716861286630a5f9df3044668d5a
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ FROM nginx:${NGINX_VERSION}-alpine
4
4
# RUN cat /etc/apk/repositories | sed -e "s/dl-cdn.alpinelinux.org/mirrors.aliyun.com/" | tee /etc/apk/repositories
5
5
6
6
ARG NGINX_SHASUM=0dde53b5a948efc9dc852814186052e559d190ea
7
- RUN apk add --no-cache --virtual .build-deps gcc libc-dev make openssl-dev pcre -dev zlib-dev linux-headers libxslt-dev gd-dev geoip-dev perl-dev libedit-dev mercurial bash alpine-sdk findutils && \
7
+ RUN apk add --no-cache --virtual .build-deps gcc libc-dev make openssl-dev pcre2 -dev zlib-dev linux-headers libxslt-dev gd-dev geoip-dev perl-dev libedit-dev mercurial bash alpine-sdk findutils && \
8
8
mkdir -p /usr/src && cd /usr/src && \
9
9
curl -L "http://nginx.org/download/nginx-${NGINX_VERSION}.tar.gz" -o nginx.tar.gz && \
10
10
echo "$NGINX_SHASUM nginx.tar.gz" | shasum -c && \
Original file line number Diff line number Diff line change @@ -14,9 +14,9 @@ RUN apt-get update && \
14
14
apt install -y wget curl && mkdir -p /usr/src
15
15
16
16
RUN cd /usr/src && \
17
- wget https://cfhcable.dl.sourceforge.net/project/pcre/pcre/8.44/pcre-8.44 .tar.gz && \
18
- tar zxvf pcre-8.44 .tar.gz && \
19
- cd pcre-8.44 && \
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 && \
20
20
./configure && make && make install
21
21
22
22
RUN cd /usr/src && \
You can’t perform that action at this time.
0 commit comments