From e6bf6392aab2c492f1e16fb55ad4e35b89108a89 Mon Sep 17 00:00:00 2001 From: Ivan Bazulic Date: Tue, 13 Feb 2024 11:26:43 -0500 Subject: [PATCH] task: Upgrade Quay nginx (PROJQUAY-6685) (#2674) According to the [app stream lifecycle](https://access.redhat.com/support/policy/updates/rhel-app-streams-life-cycle), Quay's nginx 1.20 has been retired as of November 2023. The last version of nginx that is available is 1.22 and is supported till November 2025 for RHEL 8. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 833008841..7facd274d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ ENV PATH=/app/bin/:$PATH \ ENV PYTHONUSERBASE /app ENV TZ UTC RUN set -ex\ - ; microdnf -y module enable nginx:1.20 \ + ; microdnf -y module enable nginx:1.22 \ ; microdnf -y module enable python39:3.9 \ ; microdnf update -y \ ; microdnf -y --setopt=tsflags=nodocs install \