File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,25 +10,24 @@ RUN apt-get update \
1010 && apt-get install -y --no-install-recommends \
1111 git \
1212 build-essential \
13- libpcre3 \
14- libpcre3-dev \
13+ libpcre2-dev \
1514 zlib1g \
1615 zlib1g-dev \
1716 libssl-dev \
1817 supervisor \
1918 && rm -rf /var/lib/apt/lists/*
2019
2120WORKDIR /tmp
22- RUN curl -O http://nginx.org/download/nginx-1.24.0 .tar.gz \
23- && tar -zxvf nginx-1.24.0 .tar.gz \
24- && cd nginx-1.24.0 \
21+ RUN curl -O http://nginx.org/download/nginx-1.26.3 .tar.gz \
22+ && tar -zxvf nginx-1.26.3 .tar.gz \
23+ && cd nginx-1.26.3 \
2524 && ./configure \
2625 --with-http_ssl_module \
2726 --with-http_v2_module \
2827 --with-http_gzip_static_module \
2928 && make \
3029 && make install \
31- && rm -rf /tmp/nginx-1.24.0 *
30+ && rm -rf /tmp/nginx-1.26.3 *
3231
3332# Add Nginx binary location to PATH
3433ENV PATH="/usr/local/nginx/sbin:$PATH"
You can’t perform that action at this time.
0 commit comments