From 4d3b9e831dcb822f48f501fce6f0dd09ac1a93cf Mon Sep 17 00:00:00 2001 From: Ali Mihandoost Date: Thu, 28 Mar 2024 03:53:34 +0330 Subject: [PATCH] release: v2.5.0 --- nginx-cdn/Dockerfile | 8 ++++---- nginx-core/Dockerfile | 8 ++++---- nginx-json/Dockerfile | 8 ++++---- nginx-pwa/Dockerfile | 8 ++++---- nginx-ws/Dockerfile | 8 ++++---- 5 files changed, 20 insertions(+), 20 deletions(-) diff --git a/nginx-cdn/Dockerfile b/nginx-cdn/Dockerfile index d88626e..7049437 100644 --- a/nginx-cdn/Dockerfile +++ b/nginx-cdn/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/alwatr/nginx-core:2.4.2 +FROM ghcr.io/alwatr/nginx-core:2.5.0 # COPY etc/nginx/ /etc/nginx/ # COPY default-data/ /default-data/ @@ -29,9 +29,9 @@ ARG BUILD_REV ARG BUILD_DATE LABEL org.opencontainers.image.title="alwatr/nginx-cdn" \ org.opencontainers.image.description="This is a high-performance version of NGINX, which has been enhanced by Alwatr for the purpose of serving static content efficiently." \ - org.opencontainers.image.base.name="ghcr.io/alwatr/nginx-core:2.4.2" \ - org.opencontainers.image.version="2.4.2" \ - org.opencontainers.image.ref.name="2.4.2-nginx1.25.3-alpine3.18-slim" \ + org.opencontainers.image.base.name="ghcr.io/alwatr/nginx-core:2.5.0" \ + org.opencontainers.image.version="2.5.0" \ + org.opencontainers.image.ref.name="2.5.0-nginx1.25.4-alpine3.18-slim" \ org.opencontainers.image.licenses="MIT" \ org.opencontainers.image.created=${BUILD_DATE} \ org.opencontainers.image.revision=${BUILD_REV} \ diff --git a/nginx-core/Dockerfile b/nginx-core/Dockerfile index 1d6e360..3e633de 100644 --- a/nginx-core/Dockerfile +++ b/nginx-core/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/alwatr/nginx:2.4.2 +FROM ghcr.io/alwatr/nginx:2.5.0 RUN apk add --no-cache curl HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --start-interval=1s --retries=3 CMD curl -fso /dev/null http://localhost/server-info || exit 1 @@ -47,9 +47,9 @@ ARG BUILD_REV ARG BUILD_DATE LABEL org.opencontainers.image.title="alwatr/nginx-core" \ org.opencontainers.image.description="This is a high-performance version of NGINX, which has been enhanced by Alwatr for the purpose of serving static content efficiently." \ - org.opencontainers.image.base.name="ghcr.io/alwatr/nginx:2.4.2" \ - org.opencontainers.image.version="2.4.2-nginx1.25.3" \ - org.opencontainers.image.ref.name="2.4.2-nginx1.25.3-alpine3.18-slim" \ + org.opencontainers.image.base.name="ghcr.io/alwatr/nginx:2.5.0" \ + org.opencontainers.image.version="2.5.0-nginx1.25.4" \ + org.opencontainers.image.ref.name="2.5.0-nginx1.25.4-alpine3.18-slim" \ org.opencontainers.image.licenses="MIT" \ org.opencontainers.image.created=${BUILD_DATE} \ org.opencontainers.image.revision=${BUILD_REV} \ diff --git a/nginx-json/Dockerfile b/nginx-json/Dockerfile index 50cabee..5eb29c2 100644 --- a/nginx-json/Dockerfile +++ b/nginx-json/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/alwatr/nginx-core:2.4.2 +FROM ghcr.io/alwatr/nginx-core:2.5.0 COPY etc/nginx/ /etc/nginx/ RUN set -eux; rm -rfv /default-data @@ -29,9 +29,9 @@ ARG BUILD_REV ARG BUILD_DATE LABEL org.opencontainers.image.title="alwatr/nginx-json" \ org.opencontainers.image.description="This is a high-performance version of NGINX, which has been enhanced by Alwatr for the purpose of serving JSON content efficiently." \ - org.opencontainers.image.base.name="ghcr.io/alwatr/nginx-core:2.4.2" \ - org.opencontainers.image.version="2.4.2" \ - org.opencontainers.image.ref.name="2.4.2-nginx1.25.3-alpine3.18-slim" \ + org.opencontainers.image.base.name="ghcr.io/alwatr/nginx-core:2.5.0" \ + org.opencontainers.image.version="2.5.0" \ + org.opencontainers.image.ref.name="2.5.0-nginx1.25.4-alpine3.18-slim" \ org.opencontainers.image.licenses="MIT" \ org.opencontainers.image.created=${BUILD_DATE} \ org.opencontainers.image.revision=${BUILD_REV} \ diff --git a/nginx-pwa/Dockerfile b/nginx-pwa/Dockerfile index bfa6abf..22f0861 100644 --- a/nginx-pwa/Dockerfile +++ b/nginx-pwa/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/alwatr/nginx-core:2.4.2 +FROM ghcr.io/alwatr/nginx-core:2.5.0 COPY etc/nginx/ /etc/nginx/ # COPY default-data/ /default-data/ @@ -30,9 +30,9 @@ ARG BUILD_REV ARG BUILD_DATE LABEL org.opencontainers.image.title="alwatr/nginx-pwa" \ org.opencontainers.image.description="This is a high-performance version of NGINX, which has been enhanced by Alwatr for the purpose of serving PWA efficiently." \ - org.opencontainers.image.base.name="ghcr.io/alwatr/nginx-core:2.4.2" \ - org.opencontainers.image.version="2.4.2" \ - org.opencontainers.image.ref.name="2.4.2-nginx1.25.3-alpine3.18-slim" \ + org.opencontainers.image.base.name="ghcr.io/alwatr/nginx-core:2.5.0" \ + org.opencontainers.image.version="2.5.0" \ + org.opencontainers.image.ref.name="2.5.0-nginx1.25.4-alpine3.18-slim" \ org.opencontainers.image.licenses="MIT" \ org.opencontainers.image.created=${BUILD_DATE} \ org.opencontainers.image.revision=${BUILD_REV} \ diff --git a/nginx-ws/Dockerfile b/nginx-ws/Dockerfile index c2230d3..25036ba 100644 --- a/nginx-ws/Dockerfile +++ b/nginx-ws/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/alwatr/nginx-core:2.4.2 +FROM ghcr.io/alwatr/nginx-core:2.5.0 COPY etc/nginx/ /etc/nginx/ # COPY default-data/ /default-data/ @@ -29,9 +29,9 @@ ARG BUILD_REV ARG BUILD_DATE LABEL org.opencontainers.image.title="alwatr/nginx-ws" \ org.opencontainers.image.description="This is a high-performance version of NGINX, which has been enhanced by Alwatr for the purpose of serving static website content efficiently." \ - org.opencontainers.image.base.name="ghcr.io/alwatr/nginx-core:2.4.2" \ - org.opencontainers.image.version="2.4.2" \ - org.opencontainers.image.ref.name="2.4.2-nginx1.25.3-alpine3.18-slim" \ + org.opencontainers.image.base.name="ghcr.io/alwatr/nginx-core:2.5.0" \ + org.opencontainers.image.version="2.5.0" \ + org.opencontainers.image.ref.name="2.5.0-nginx1.25.4-alpine3.18-slim" \ org.opencontainers.image.licenses="MIT" \ org.opencontainers.image.created=${BUILD_DATE} \ org.opencontainers.image.revision=${BUILD_REV} \