Skip to content

Commit d217bd3

Browse files
authored
Merge pull request #23 from Intellection/upgrade_nginx_1.27.1
[SRE-4239] Upgrade Nginx to v1.27.1
2 parents 35dcadb + b0d7c94 commit d217bd3

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 1.27.1
4+
5+
* Update base image to `zappi/nginx:1.27.1`.
6+
37
## 1.25.4
48

59
* Add `X-Request-Start` header set to current time with millisecond precision.

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM zappi/nginx:1.25.4 as builder
1+
FROM zappi/nginx:1.27.1 AS builder
22

33
USER root
44

@@ -16,9 +16,9 @@ RUN apt-get update -y && \
1616
WORKDIR /usr/src/
1717

1818
# Download nginx source
19-
ARG NGINX_VERSION="1.25.4"
19+
ARG NGINX_VERSION="1.27.1"
2020
ARG NGINX_PKG="nginx-${NGINX_VERSION}.tar.gz"
21-
ARG NGINX_SHA="760729901acbaa517996e681ee6ea259032985e37c2768beef80df3a877deed9"
21+
ARG NGINX_SHA="bd7ba68a6ce1ea3768b771c7e2ab4955a59fb1b1ae8d554fedb6c2304104bdfc"
2222
RUN wget "http://nginx.org/download/${NGINX_PKG}" && \
2323
echo "${NGINX_SHA} *${NGINX_PKG}" | sha256sum -c - && \
2424
tar --no-same-owner -xzf ${NGINX_PKG} --one-top-level=nginx --strip-components=1
@@ -37,7 +37,7 @@ RUN cd nginx && \
3737
make modules
3838

3939
# Production container starts here
40-
FROM zappi/nginx:1.25.4
40+
FROM zappi/nginx:1.27.1
4141

4242
USER root
4343

0 commit comments

Comments
 (0)