Skip to content

Commit 35cd8ab

Browse files
authored
Merge pull request #14 from Intellection/upgrade-to-1.25.2
Upgrade Nginx to v1.25.2
2 parents 1223baf + d1cd73f commit 35cd8ab

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
# Changelog
22

3+
## 1.25.2
4+
5+
* Upgrade to Nginx 1.25.2.
6+
* Upgrade to Alpine 3.18.
7+
38
## 1.23.3-1
49

510
* Enable gzip compression globally.
611

712
## 1.23.3
813

9-
* Upgrade nginx to 1.23.3.
14+
* Upgrade Nginx to 1.23.3.
1015
* Upgrade headers-more to 0.34.
1116

1217
## 1.19.5-8

Dockerfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM zappi/nginx:1.23.3 as builder
1+
FROM zappi/nginx:1.25.2 as builder
22

33
USER root
44

@@ -24,9 +24,9 @@ RUN apk add --no-cache \
2424
WORKDIR /usr/src/
2525

2626
# Download nginx source
27-
ARG NGINX_VERSION="1.23.3"
27+
ARG NGINX_VERSION="1.25.2"
2828
ARG NGINX_PKG="nginx-${NGINX_VERSION}.tar.gz"
29-
ARG NGINX_SHA="75cb5787dbb9fae18b14810f91cc4343f64ce4c24e27302136fb52498042ba54"
29+
ARG NGINX_SHA="05dd6d9356d66a74e61035f2a42162f8c754c97cf1ba64e7a801ba158d6c0711"
3030

3131
RUN wget "http://nginx.org/download/${NGINX_PKG}" && \
3232
echo "${NGINX_SHA} *${NGINX_PKG}" | sha256sum -c - && \
@@ -48,7 +48,7 @@ RUN cd nginx && \
4848
make modules
4949

5050
# Production container starts here
51-
FROM zappi/nginx:1.23.3
51+
FROM zappi/nginx:1.25.2
5252

5353
# Copy compiled module
5454
COPY --from=builder /usr/src/nginx/objs/*_module.so /etc/nginx/modules/

0 commit comments

Comments
 (0)