diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2021-06-04 08:57:50 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2021-06-04 08:57:50 +0200 |
commit | 9437d8dd60468af25056f761911fe7e09a032762 (patch) | |
tree | e198cf275f119071d1f46d30a40e3a0abb89f1e3 | |
parent | 3c38f21d5315bef4423ca6fafe86d7e21b713cea (diff) | |
download | s2i-jekyll-9437d8dd60468af25056f761911fe7e09a032762.tar.gz |
workaround (8.4 bug?): drop perl-macros
-rw-r--r-- | Dockerfile.ubi8 | 4 |
1 files changed, 3 insertions, 1 deletions
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 && \ |