File tree 2 files changed +10
-5
lines changed
2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 1.25.2
4
+
5
+ * Upgrade to Nginx 1.25.2.
6
+ * Upgrade to Alpine 3.18.
7
+
3
8
## 1.23.3-1
4
9
5
10
* Enable gzip compression globally.
6
11
7
12
## 1.23.3
8
13
9
- * Upgrade nginx to 1.23.3.
14
+ * Upgrade Nginx to 1.23.3.
10
15
* Upgrade headers-more to 0.34.
11
16
12
17
## 1.19.5-8
Original file line number Diff line number Diff line change 1
- FROM zappi/nginx:1.23.3 as builder
1
+ FROM zappi/nginx:1.25.2 as builder
2
2
3
3
USER root
4
4
@@ -24,9 +24,9 @@ RUN apk add --no-cache \
24
24
WORKDIR /usr/src/
25
25
26
26
# Download nginx source
27
- ARG NGINX_VERSION="1.23.3 "
27
+ ARG NGINX_VERSION="1.25.2 "
28
28
ARG NGINX_PKG="nginx-${NGINX_VERSION}.tar.gz"
29
- ARG NGINX_SHA="75cb5787dbb9fae18b14810f91cc4343f64ce4c24e27302136fb52498042ba54 "
29
+ ARG NGINX_SHA="05dd6d9356d66a74e61035f2a42162f8c754c97cf1ba64e7a801ba158d6c0711 "
30
30
31
31
RUN wget "http://nginx.org/download/${NGINX_PKG}" && \
32
32
echo "${NGINX_SHA} *${NGINX_PKG}" | sha256sum -c - && \
@@ -48,7 +48,7 @@ RUN cd nginx && \
48
48
make modules
49
49
50
50
# Production container starts here
51
- FROM zappi/nginx:1.23.3
51
+ FROM zappi/nginx:1.25.2
52
52
53
53
# Copy compiled module
54
54
COPY --from=builder /usr/src/nginx/objs/*_module.so /etc/nginx/modules/
You can’t perform that action at this time.
0 commit comments