File tree Expand file tree Collapse file tree 3 files changed +12
-7
lines changed Expand file tree Collapse file tree 3 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 1.23.3
4
+
5
+ * Upgrade nginx to 1.23.3.
6
+ * Upgrade headers-more to 0.34.
7
+
3
8
## 1.19.5-8
4
9
5
10
* Allow passing through ` X-Forwarded-Host ` header if it's set.
Original file line number Diff line number Diff line change 1
- * @ Intellection/devops
1
+ * @ Intellection/sre
Original file line number Diff line number Diff line change 1
- FROM zappi/nginx:1.19.5 as builder
1
+ FROM zappi/nginx:1.23.3 as builder
2
2
3
3
USER root
4
4
@@ -24,18 +24,18 @@ RUN apk add --no-cache \
24
24
WORKDIR /usr/src/
25
25
26
26
# Download nginx source
27
- ARG NGINX_VERSION="1.19.5 "
27
+ ARG NGINX_VERSION="1.23.3 "
28
28
ARG NGINX_PKG="nginx-${NGINX_VERSION}.tar.gz"
29
- ARG NGINX_SHA="5c0a46afd6c452d4443f6ec0767f4d5c3e7c499e55a60cd6542b35a61eda799c "
29
+ ARG NGINX_SHA="75cb5787dbb9fae18b14810f91cc4343f64ce4c24e27302136fb52498042ba54 "
30
30
31
31
RUN wget "http://nginx.org/download/${NGINX_PKG}" && \
32
32
echo "${NGINX_SHA} *${NGINX_PKG}" | sha256sum -c - && \
33
33
tar --no-same-owner -xzf ${NGINX_PKG} --one-top-level=nginx --strip-components=1
34
34
35
35
# Download headers-more module source
36
- ARG HEADERS_MORE_VERSION="0.33 "
36
+ ARG HEADERS_MORE_VERSION="0.34 "
37
37
ARG HEADERS_MORE_PKG="v${HEADERS_MORE_VERSION}.tar.gz"
38
- ARG HEADERS_MORE_SHA="a3dcbab117a9c103bc1ea5200fc00a7b7d2af97ff7fd525f16f8ac2632e30fbf "
38
+ ARG HEADERS_MORE_SHA="0c0d2ced2ce895b3f45eb2b230cd90508ab2a773299f153de14a43e44c1209b3 "
39
39
40
40
RUN wget "https://github.com/openresty/headers-more-nginx-module/archive/${HEADERS_MORE_PKG}" && \
41
41
echo "${HEADERS_MORE_SHA} *${HEADERS_MORE_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.19.5
51
+ FROM zappi/nginx:1.23.3
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