File tree Expand file tree Collapse file tree 4 files changed +11
-5
lines changed Expand file tree Collapse file tree 4 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 1.27.4
4+
5+ * Update base image to ` zappi/nginx:1.27.4 ` .
6+ * Fix pid file perimssion denied error.
7+
38## 1.27.1-2
49
510* Upgrade ` headers-more-nginx-module ` to ` v0.38 ` .
Original file line number Diff line number Diff line change 1- FROM zappi/nginx:1.27.1 AS builder
1+ FROM zappi/nginx:1.27.4 AS builder
22
33USER root
44
@@ -16,9 +16,9 @@ RUN apt-get update -y && \
1616WORKDIR /usr/src/
1717
1818# Download nginx source
19- ARG NGINX_VERSION="1.27.1 "
19+ ARG NGINX_VERSION="1.27.4 "
2020ARG NGINX_PKG="nginx-${NGINX_VERSION}.tar.gz"
21- ARG NGINX_SHA="bd7ba68a6ce1ea3768b771c7e2ab4955a59fb1b1ae8d554fedb6c2304104bdfc "
21+ ARG NGINX_SHA="294816f879b300e621fa4edd5353dd1ec00badb056399eceb30de7db64b753b2 "
2222RUN 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.27.1
40+ FROM zappi/nginx:1.27.4
4141
4242USER root
4343
Original file line number Diff line number Diff line change 11daemon off;
22
3+ pid /tmp/nginx.pid;
4+
35worker_processes auto;
46worker_rlimit_nofile 8192;
57worker_shutdown_timeout 240s;
Original file line number Diff line number Diff line change 11---
2- version : ' 3.7'
32services :
43 app :
54 image : caddy:2.1.1-alpine
You can’t perform that action at this time.
0 commit comments