From 03c514d98266550e26d95029b018f5a830befa9f Mon Sep 17 00:00:00 2001 From: Jason Montleon Date: Tue, 4 Jun 2024 10:43:24 -0400 Subject: [PATCH] :ghost: Fix build failures (#318) CentOS Stream 8 is EOL. For the short term we can still get packages from the CentOS vault. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 52c69f6..123b48e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ COPY tools/upgrades/jwt.sh /usr/local/bin/jwt.sh RUN dnf -y install openssl && dnf clean all RUN echo -e "[centos8-appstream]" \ "\nname = centos8-appstream" \ - "\nbaseurl = http://mirror.centos.org/centos/8-stream/AppStream/x86_64/os/" \ + "\nbaseurl = https://vault.centos.org/8-stream/AppStream/x86_64/os/" \ "\nenabled = 1" \ "\ngpgcheck = 0" > /etc/yum.repos.d/centos.repo RUN dnf -y module enable postgresql:15 && dnf -y install postgresql && dnf clean all