Compare commits

...

2 Commits

Author SHA1 Message Date
Daniel Wolf 298747eeea
cut down on discord spam
Build Container Image / build_manifest (push) Blocked by required conditions Details
Build Container Image / publish_arm64 (push) Blocked by required conditions Details
Build Container Image / publish_manifest (push) Blocked by required conditions Details
Build Container Image / build_amd64 (push) Failing after 49s Details
Build Container Image / publish_amd64 (push) Has been skipped Details
Build Container Image / build_i386 (push) Failing after 48s Details
Build Container Image / publish_i386 (push) Has been skipped Details
Build Container Image / build_armhf (push) Failing after 5m50s Details
Build Container Image / publish_armhf (push) Has been skipped Details
Build Container Image / build_riscv64 (push) Successful in 7m0s Details
Build Container Image / publish_riscv64 (push) Successful in 51s Details
Build Container Image / build_arm64 (push) Has been cancelled Details
2024-02-28 11:01:50 -05:00
Daniel Wolf 1701e629a0
update to nginx v1.25.4 2024-02-28 11:00:53 -05:00
2 changed files with 8 additions and 8 deletions

View File

@ -33,7 +33,7 @@ jobs:
run: docker push code.nephatrine.net/nephnet/nginx-ssl:master-amd64
- name: Notify Discord
uses: https://github.com/sarisia/actions-status-discord@v1
if: always()
if: failure()
with:
title: "Container Build (X86_64)"
webhook: ${{ secrets.DISCORD_WEBHOOK_BUILD }}
@ -61,7 +61,7 @@ jobs:
run: docker push code.nephatrine.net/nephnet/nginx-ssl:master-i386
- name: Notify Discord
uses: https://github.com/sarisia/actions-status-discord@v1
if: always()
if: failure()
with:
title: "Container Build (I686)"
webhook: ${{ secrets.DISCORD_WEBHOOK_BUILD }}
@ -89,7 +89,7 @@ jobs:
run: docker push code.nephatrine.net/nephnet/nginx-ssl:master-arm64v8
- name: Notify Discord
uses: https://github.com/sarisia/actions-status-discord@v1
if: always()
if: failure()
with:
title: "Container Build (AARCH64)"
webhook: ${{ secrets.DISCORD_WEBHOOK_BUILD }}
@ -117,7 +117,7 @@ jobs:
run: docker push code.nephatrine.net/nephnet/nginx-ssl:master-armv7
- name: Notify Discord
uses: https://github.com/sarisia/actions-status-discord@v1
if: always()
if: failure()
with:
title: "Container Build (ARMV7L)"
webhook: ${{ secrets.DISCORD_WEBHOOK_BUILD }}
@ -145,7 +145,7 @@ jobs:
run: docker push code.nephatrine.net/nephnet/nginx-ssl:master-riscv64
- name: Notify Discord
uses: https://github.com/sarisia/actions-status-discord@v1
if: always()
if: failure()
with:
title: "Container Build (RISCV64)"
webhook: ${{ secrets.DISCORD_WEBHOOK_BUILD }}
@ -263,11 +263,11 @@ jobs:
password: ${{ secrets.DOCKER_PASS }}
- name: Docker Manifest
run: |
docker manifest create nephatrine/nginx-ssl:1.25.3 --amend nephatrine/nginx-ssl:latest-amd64 --amend nephatrine/nginx-ssl:latest-i386 --amend nephatrine/nginx-ssl:latest-arm64v8 --amend nephatrine/nginx-ssl:latest-armv7 --amend nephatrine/nginx-ssl:latest-riscv64
docker manifest create nephatrine/nginx-ssl:1.25.4 --amend nephatrine/nginx-ssl:latest-amd64 --amend nephatrine/nginx-ssl:latest-i386 --amend nephatrine/nginx-ssl:latest-arm64v8 --amend nephatrine/nginx-ssl:latest-armv7 --amend nephatrine/nginx-ssl:latest-riscv64
docker manifest create nephatrine/nginx-ssl:1.25 --amend nephatrine/nginx-ssl:latest-amd64 --amend nephatrine/nginx-ssl:latest-i386 --amend nephatrine/nginx-ssl:latest-arm64v8 --amend nephatrine/nginx-ssl:latest-armv7 --amend nephatrine/nginx-ssl:latest-riscv64
docker manifest create nephatrine/nginx-ssl:1 --amend nephatrine/nginx-ssl:latest-amd64 --amend nephatrine/nginx-ssl:latest-i386 --amend nephatrine/nginx-ssl:latest-arm64v8 --amend nephatrine/nginx-ssl:latest-armv7 --amend nephatrine/nginx-ssl:latest-riscv64
docker manifest create nephatrine/nginx-ssl:latest --amend nephatrine/nginx-ssl:latest-amd64 --amend nephatrine/nginx-ssl:latest-i386 --amend nephatrine/nginx-ssl:latest-arm64v8 --amend nephatrine/nginx-ssl:latest-armv7 --amend nephatrine/nginx-ssl:latest-riscv64
docker manifest push --purge nephatrine/nginx-ssl:1.25.3
docker manifest push --purge nephatrine/nginx-ssl:1.25.4
docker manifest push --purge nephatrine/nginx-ssl:1.25
docker manifest push --purge nephatrine/nginx-ssl:1
docker manifest push --purge nephatrine/nginx-ssl:latest

View File

@ -7,7 +7,7 @@ FROM nephatrine/nxbuilder:alpine AS builder
RUN echo "====== INSTALL LIBRARIES ======" \
&& apk add --no-cache gd-dev geoip-dev libatomic_ops-dev libxslt-dev pcre-dev
ARG NGINX_VERSION=release-1.25.3
ARG NGINX_VERSION=release-1.25.4
RUN git -C /root clone -b "$NGINX_VERSION" --single-branch --depth=1 https://github.com/nginx/nginx.git
RUN echo "====== COMPILE NGINX ======" \