From 9437d8dd60468af25056f761911fe7e09a032762 Mon Sep 17 00:00:00 2001 From: Gerd Hoffmann Date: Fri, 4 Jun 2021 08:57:50 +0200 Subject: workaround (8.4 bug?): drop perl-macros --- Dockerfile.ubi8 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile.ubi8 b/Dockerfile.ubi8 index 154152a..0e4e415 100644 --- a/Dockerfile.ubi8 +++ b/Dockerfile.ubi8 @@ -20,7 +20,9 @@ COPY ./s2i/bin/ /usr/libexec/s2i COPY ./etc/jekyll-documentroot.conf /etc/httpd/conf.d/ COPY ./etc/proxy.sh /etc/profile.d/ -RUN set -x; source /etc/profile.d/proxy.sh; \ +RUN source /etc/profile.d/proxy.sh; \ + set -x; \ + dnf remove -y perl-macros; \ dnf update -y && \ dnf install -y httpd && \ dnf clean all && \ -- cgit