From fc5575237987d8a286b5737b3e3ced0e48fe751d Mon Sep 17 00:00:00 2001 From: jknapp Date: Wed, 1 Apr 2026 10:44:24 -0700 Subject: [PATCH] Fix curl-minimal conflict in shared-httpd Dockerfile The almalinux/9-base image ships curl-minimal which conflicts with the full curl package. Add --allowerasing to allow dnf to replace it. Co-Authored-By: Claude Opus 4.6 (1M context) --- Dockerfile.shared-httpd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.shared-httpd b/Dockerfile.shared-httpd index 838394d..088dd9a 100644 --- a/Dockerfile.shared-httpd +++ b/Dockerfile.shared-httpd @@ -4,7 +4,7 @@ FROM almalinux/9-base RUN dnf install -y \ https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm && \ dnf update -y && \ - dnf install -y httpd mod_ssl iproute cronie procps curl && \ + dnf install -y --allowerasing httpd mod_ssl iproute cronie procps curl && \ dnf clean all && \ rm -rf /var/cache/dnf /usr/share/doc /usr/share/man /usr/share/locale/*