Skip to content

Commit

Permalink
fix: update NGINX base image version to 1.27.2 and adjust related labels
Browse files Browse the repository at this point in the history
  • Loading branch information
AliMD committed Nov 11, 2024
1 parent 0ec647b commit 0310bc1
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion nginx-cdn/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ 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:3.3.4" \
org.opencontainers.image.version="3.3.4" \
org.opencontainers.image.ref.name="3.3.4-nginx1.25.5-alpine-slim" \
org.opencontainers.image.ref.name="3.3.4-nginx1.27.2-alpine-slim" \
org.opencontainers.image.licenses="MIT" \
org.opencontainers.image.created=${BUILD_DATE} \
org.opencontainers.image.revision=${BUILD_REV} \
Expand Down
4 changes: 2 additions & 2 deletions nginx-core/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ 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:3.3.4" \
org.opencontainers.image.version="3.3.4-nginx1.25.5" \
org.opencontainers.image.ref.name="3.3.4-nginx1.25.5-alpine-slim" \
org.opencontainers.image.version="3.3.4-nginx1.27.2" \
org.opencontainers.image.ref.name="3.3.4-nginx1.27.2-alpine-slim" \
org.opencontainers.image.licenses="MIT" \
org.opencontainers.image.created=${BUILD_DATE} \
org.opencontainers.image.revision=${BUILD_REV} \
Expand Down
2 changes: 1 addition & 1 deletion nginx-json/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ 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:3.3.4" \
org.opencontainers.image.version="3.3.4" \
org.opencontainers.image.ref.name="3.3.4-nginx1.25.5-alpine-slim" \
org.opencontainers.image.ref.name="3.3.4-nginx1.27.2-alpine-slim" \
org.opencontainers.image.licenses="MIT" \
org.opencontainers.image.created=${BUILD_DATE} \
org.opencontainers.image.revision=${BUILD_REV} \
Expand Down
2 changes: 1 addition & 1 deletion nginx-pwa/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ 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:3.3.4" \
org.opencontainers.image.version="3.3.4" \
org.opencontainers.image.ref.name="3.3.4-nginx1.25.5-alpine-slim" \
org.opencontainers.image.ref.name="3.3.4-nginx1.27.2-alpine-slim" \
org.opencontainers.image.licenses="MIT" \
org.opencontainers.image.created=${BUILD_DATE} \
org.opencontainers.image.revision=${BUILD_REV} \
Expand Down
2 changes: 1 addition & 1 deletion nginx-ws/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ 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:3.3.4" \
org.opencontainers.image.version="3.3.4" \
org.opencontainers.image.ref.name="3.3.4-nginx1.25.5-alpine-slim" \
org.opencontainers.image.ref.name="3.3.4-nginx1.27.2-alpine-slim" \
org.opencontainers.image.licenses="MIT" \
org.opencontainers.image.created=${BUILD_DATE} \
org.opencontainers.image.revision=${BUILD_REV} \
Expand Down
8 changes: 4 additions & 4 deletions nginx/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/library/nginx:1.25.5-alpine-slim
FROM docker.io/library/nginx:1.27.2-alpine-slim

RUN rm -rfv /docker-entrypoint* /etc/nginx/conf.d/* /etc/nginx/nginx.conf /var/www/html /usr/share/nginx/html /data
COPY etc/nginx/ /etc/nginx/
Expand All @@ -20,9 +20,9 @@ ARG BUILD_REV
ARG BUILD_DATE
LABEL org.opencontainers.image.title="alwatr/nginx" \
org.opencontainers.image.description="The slim (lightweight) version of the NGINX web server, packaged by Alwatr." \
org.opencontainers.image.base.name="docker.io/library/nginx:1.25.5-alpine-slim" \
org.opencontainers.image.version="1.25.5" \
org.opencontainers.image.ref.name="1.25.5-alpine-slim" \
org.opencontainers.image.base.name="docker.io/library/nginx:1.27.2-alpine-slim" \
org.opencontainers.image.version="1.27.2" \
org.opencontainers.image.ref.name="1.27.2-alpine-slim" \
org.opencontainers.image.licenses="MIT" \
org.opencontainers.image.created=${BUILD_DATE} \
org.opencontainers.image.revision=${BUILD_REV} \
Expand Down

0 comments on commit 0310bc1

Please sign in to comment.