diff --git a/ci/docker/i686-unknown-linux-gnu/Dockerfile b/ci/docker/i686-unknown-linux-gnu/Dockerfile index b183f532..f4461b5d 100644 --- a/ci/docker/i686-unknown-linux-gnu/Dockerfile +++ b/ci/docker/i686-unknown-linux-gnu/Dockerfile @@ -1 +1,6 @@ FROM rust-i686-unknown-linux-gnu + + # Install `perl-IPC-Cmd` to make OpenSSL v3 happy. + # See: + RUN yum upgrade -y && \ + yum install -y perl-IPC-Cmd diff --git a/ci/docker/x86_64-unknown-linux-gnu/Dockerfile b/ci/docker/x86_64-unknown-linux-gnu/Dockerfile index 6b7d2e73..18017973 100644 --- a/ci/docker/x86_64-unknown-linux-gnu/Dockerfile +++ b/ci/docker/x86_64-unknown-linux-gnu/Dockerfile @@ -1 +1,6 @@ FROM rust-x86_64-unknown-linux-gnu + + # Install `perl-IPC-Cmd` to make OpenSSL v3 happy. + # See: + RUN yum upgrade -y && \ + yum install -y perl-IPC-Cmd