diff --git a/nginx/1.27.3/22.03-lts-sp1/Dockerfile b/nginx/1.27.3/22.03-lts-sp1/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..ae4a59f2992a1d685539b20c218d52d2fb2cd8bf --- /dev/null +++ b/nginx/1.27.3/22.03-lts-sp1/Dockerfile @@ -0,0 +1,45 @@ +ARG BASE=openeuler/openeuler:22.03-lts-sp1 +FROM ${BASE} + +ARG TARGETARCH +ARG VERSION=1.27.3 + +RUN yum -y install gcc openssl-devel make libxml2-devel libxslt-devel gd-devel perl-devel\ + GeoIP-devel gperftools-devel && \ + yum clean all && \ + curl -o /tmp/nginx.tar.gz https://nginx.org/download/nginx-${VERSION}.tar.gz && \ + tar -zxvf /tmp/nginx.tar.gz -C /tmp && \ + cd /tmp/nginx-${VERSION} && \ + mkdir -p /var/tmp/nginx/ && \ + ./configure \ + --prefix=/usr/local/nginx --sbin-path=/usr/sbin/nginx \ + --modules-path=/usr/local/nginx/modules --conf-path=/etc/nginx/nginx.conf \ + --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log \ + --http-client-body-temp-path=/var/tmp/nginx/client \ + --http-fastcgi-temp-path=/var/tmp/nginx/fcgi \ + --http-proxy-temp-path=/var/tmp/nginx/proxy \ + --http-scgi-temp-path=/var/tmp/nginx/scgi \ + --http-uwsgi-temp-path=/var/tmp/nginx/uwsgi \ + --pid-path=/var/run/nginx.pid \ + --lock-path=/var/run/nginx.lock \ + --with-file-aio --with-ipv6 --with-http_ssl_module --with-http_v2_module \ + --with-http_realip_module --with-http_addition_module \ + --with-http_xslt_module=dynamic --with-http_image_filter_module=dynamic \ + --with-http_geoip_module=dynamic --with-http_sub_module \ + --with-http_dav_module --with-http_flv_module --with-http_mp4_module \ + --with-http_gunzip_module --with-http_gzip_static_module \ + --with-http_random_index_module --with-http_secure_link_module \ + --with-http_degradation_module --with-http_slice_module \ + --with-http_perl_module=dynamic --with-http_auth_request_module \ + --with-mail=dynamic --with-mail_ssl_module --with-openssl-opt=yes \ + --with-pcre --with-pcre-jit --with-stream=dynamic \ + --with-stream_ssl_module --with-google_perftools_module --with-debug && \ + make && make install && \ + rm -rf /tmp/nginx.tar.gz /tmp/nginx-${VERSION} + +ENV PATH /usr/local/nginx:$PATH +WORKDIR /usr/local/nginx/html + + +EXPOSE 80 +ENTRYPOINT ["nginx", "-g", "daemon off;"] \ No newline at end of file diff --git a/nginx/1.27.3/22.03-lts-sp3/Dockerfile b/nginx/1.27.3/22.03-lts-sp3/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..293b400645f63a2b10d991e10e538f608981b08e --- /dev/null +++ b/nginx/1.27.3/22.03-lts-sp3/Dockerfile @@ -0,0 +1,45 @@ +ARG BASE=openeuler/openeuler:22.03-lts-sp3 +FROM ${BASE} + +ARG TARGETARCH +ARG VERSION=1.27.3 + +RUN yum -y install gcc openssl-devel make libxml2-devel libxslt-devel gd-devel perl-devel\ + GeoIP-devel gperftools-devel && \ + yum clean all && \ + curl -o /tmp/nginx.tar.gz https://nginx.org/download/nginx-${VERSION}.tar.gz && \ + tar -zxvf /tmp/nginx.tar.gz -C /tmp && \ + cd /tmp/nginx-${VERSION} && \ + mkdir -p /var/tmp/nginx/ && \ + ./configure \ + --prefix=/usr/local/nginx --sbin-path=/usr/sbin/nginx \ + --modules-path=/usr/local/nginx/modules --conf-path=/etc/nginx/nginx.conf \ + --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log \ + --http-client-body-temp-path=/var/tmp/nginx/client \ + --http-fastcgi-temp-path=/var/tmp/nginx/fcgi \ + --http-proxy-temp-path=/var/tmp/nginx/proxy \ + --http-scgi-temp-path=/var/tmp/nginx/scgi \ + --http-uwsgi-temp-path=/var/tmp/nginx/uwsgi \ + --pid-path=/var/run/nginx.pid \ + --lock-path=/var/run/nginx.lock \ + --with-file-aio --with-ipv6 --with-http_ssl_module --with-http_v2_module \ + --with-http_realip_module --with-http_addition_module \ + --with-http_xslt_module=dynamic --with-http_image_filter_module=dynamic \ + --with-http_geoip_module=dynamic --with-http_sub_module \ + --with-http_dav_module --with-http_flv_module --with-http_mp4_module \ + --with-http_gunzip_module --with-http_gzip_static_module \ + --with-http_random_index_module --with-http_secure_link_module \ + --with-http_degradation_module --with-http_slice_module \ + --with-http_perl_module=dynamic --with-http_auth_request_module \ + --with-mail=dynamic --with-mail_ssl_module --with-openssl-opt=yes \ + --with-pcre --with-pcre-jit --with-stream=dynamic \ + --with-stream_ssl_module --with-google_perftools_module --with-debug && \ + make && make install && \ + rm -rf /tmp/nginx.tar.gz /tmp/nginx-${VERSION} + +ENV PATH /usr/local/nginx:$PATH +WORKDIR /usr/local/nginx/html + + +EXPOSE 80 +ENTRYPOINT ["nginx", "-g", "daemon off;"] \ No newline at end of file diff --git a/nginx/1.27.3/22.03-lts-sp4/Dockerfile b/nginx/1.27.3/22.03-lts-sp4/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..840f5c6ddd1a82a7e3fbf57e82cfc48d42972c0e --- /dev/null +++ b/nginx/1.27.3/22.03-lts-sp4/Dockerfile @@ -0,0 +1,45 @@ +ARG BASE=openeuler/openeuler:22.03-lts-sp4 +FROM ${BASE} + +ARG TARGETARCH +ARG VERSION=1.27.3 + +RUN yum -y install gcc openssl-devel make libxml2-devel libxslt-devel gd-devel perl-devel\ + GeoIP-devel gperftools-devel && \ + yum clean all && \ + curl -o /tmp/nginx.tar.gz https://nginx.org/download/nginx-${VERSION}.tar.gz && \ + tar -zxvf /tmp/nginx.tar.gz -C /tmp && \ + cd /tmp/nginx-${VERSION} && \ + mkdir -p /var/tmp/nginx/ && \ + ./configure \ + --prefix=/usr/local/nginx --sbin-path=/usr/sbin/nginx \ + --modules-path=/usr/local/nginx/modules --conf-path=/etc/nginx/nginx.conf \ + --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log \ + --http-client-body-temp-path=/var/tmp/nginx/client \ + --http-fastcgi-temp-path=/var/tmp/nginx/fcgi \ + --http-proxy-temp-path=/var/tmp/nginx/proxy \ + --http-scgi-temp-path=/var/tmp/nginx/scgi \ + --http-uwsgi-temp-path=/var/tmp/nginx/uwsgi \ + --pid-path=/var/run/nginx.pid \ + --lock-path=/var/run/nginx.lock \ + --with-file-aio --with-ipv6 --with-http_ssl_module --with-http_v2_module \ + --with-http_realip_module --with-http_addition_module \ + --with-http_xslt_module=dynamic --with-http_image_filter_module=dynamic \ + --with-http_geoip_module=dynamic --with-http_sub_module \ + --with-http_dav_module --with-http_flv_module --with-http_mp4_module \ + --with-http_gunzip_module --with-http_gzip_static_module \ + --with-http_random_index_module --with-http_secure_link_module \ + --with-http_degradation_module --with-http_slice_module \ + --with-http_perl_module=dynamic --with-http_auth_request_module \ + --with-mail=dynamic --with-mail_ssl_module --with-openssl-opt=yes \ + --with-pcre --with-pcre-jit --with-stream=dynamic \ + --with-stream_ssl_module --with-google_perftools_module --with-debug && \ + make && make install && \ + rm -rf /tmp/nginx.tar.gz /tmp/nginx-${VERSION} + +ENV PATH /usr/local/nginx:$PATH +WORKDIR /usr/local/nginx/html + + +EXPOSE 80 +ENTRYPOINT ["nginx", "-g", "daemon off;"] \ No newline at end of file diff --git a/nginx/1.27.3/24.03-lts/Dockerfile b/nginx/1.27.3/24.03-lts/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..e0253d306259c2990d94ab4a53ef1d3bcd626b55 --- /dev/null +++ b/nginx/1.27.3/24.03-lts/Dockerfile @@ -0,0 +1,45 @@ +ARG BASE=openeuler/openeuler:24.03-lts +FROM ${BASE} + +ARG TARGETARCH +ARG VERSION=1.27.3 + +RUN yum -y install gcc openssl-devel make libxml2-devel libxslt-devel gd-devel perl-devel\ + GeoIP-devel gperftools-devel && \ + yum clean all && \ + curl -o /tmp/nginx.tar.gz https://nginx.org/download/nginx-${VERSION}.tar.gz && \ + tar -zxvf /tmp/nginx.tar.gz -C /tmp && \ + cd /tmp/nginx-${VERSION} && \ + mkdir -p /var/tmp/nginx/ && \ + ./configure \ + --prefix=/usr/local/nginx --sbin-path=/usr/sbin/nginx \ + --modules-path=/usr/local/nginx/modules --conf-path=/etc/nginx/nginx.conf \ + --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log \ + --http-client-body-temp-path=/var/tmp/nginx/client \ + --http-fastcgi-temp-path=/var/tmp/nginx/fcgi \ + --http-proxy-temp-path=/var/tmp/nginx/proxy \ + --http-scgi-temp-path=/var/tmp/nginx/scgi \ + --http-uwsgi-temp-path=/var/tmp/nginx/uwsgi \ + --pid-path=/var/run/nginx.pid \ + --lock-path=/var/run/nginx.lock \ + --with-file-aio --with-ipv6 --with-http_ssl_module --with-http_v2_module \ + --with-http_realip_module --with-http_addition_module \ + --with-http_xslt_module=dynamic --with-http_image_filter_module=dynamic \ + --with-http_geoip_module=dynamic --with-http_sub_module \ + --with-http_dav_module --with-http_flv_module --with-http_mp4_module \ + --with-http_gunzip_module --with-http_gzip_static_module \ + --with-http_random_index_module --with-http_secure_link_module \ + --with-http_degradation_module --with-http_slice_module \ + --with-http_perl_module=dynamic --with-http_auth_request_module \ + --with-mail=dynamic --with-mail_ssl_module --with-openssl-opt=yes \ + --with-pcre --with-pcre-jit --with-stream=dynamic \ + --with-stream_ssl_module --with-google_perftools_module --with-debug && \ + make && make install && \ + rm -rf /tmp/nginx.tar.gz /tmp/nginx-${VERSION} + +ENV PATH /usr/local/nginx:$PATH +WORKDIR /usr/local/nginx/html + + +EXPOSE 80 +ENTRYPOINT ["nginx", "-g", "daemon off;"] \ No newline at end of file diff --git a/nginx/meta.yml b/nginx/meta.yml index 6ecadb6684a47a3ebd5fd38858353ec1887b57de..ce73d33bf63e344e13fe036899fb96e545ad1c9e 100644 --- a/nginx/meta.yml +++ b/nginx/meta.yml @@ -17,4 +17,12 @@ 1.27.2-oe2203sp4: path: nginx/1.27.2/22.03-lts-sp4/Dockerfile 1.27.2-oe2403lts: - path: nginx/1.27.2/24.03-lts/Dockerfile \ No newline at end of file + path: nginx/1.27.2/24.03-lts/Dockerfile +1.27.3-oe2403lts: + path: nginx/1.27.3/24.03-lts/Dockerfile +1.27.3-oe2203sp3: + path: nginx/1.27.3/22.03-lts-sp3/Dockerfile +1.27.3-oe2203sp4: + path: nginx/1.27.3/22.03-lts-sp4/Dockerfile +1.27.3-oe2203sp1: + path: nginx/1.27.3/22.03-lts-sp1/Dockerfile \ No newline at end of file