diff --git a/scripts/binaries/x86_64/fedora-39.Dockerfile b/scripts/binaries/x86_64/fedora-39.Dockerfile index f85f2ecaa..2aed76ab3 100755 --- a/scripts/binaries/x86_64/fedora-39.Dockerfile +++ b/scripts/binaries/x86_64/fedora-39.Dockerfile @@ -2,7 +2,7 @@ FROM fedora:39 as builder # This installs all dependencies that we need (besides Rust). RUN dnf update -y && \ - dnf install git clang curl make cmake protobuf-compiler -y + dnf install git clang curl make cmake protobuf-compiler perl perl-FindBin -y # This installs Rust RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > rust_install.sh && chmod u+x rust_install.sh && ./rust_install.sh -y diff --git a/scripts/binaries/x86_64/fedora-40.Dockerfile b/scripts/binaries/x86_64/fedora-40.Dockerfile index 7ba10308e..04e34dc88 100755 --- a/scripts/binaries/x86_64/fedora-40.Dockerfile +++ b/scripts/binaries/x86_64/fedora-40.Dockerfile @@ -2,7 +2,7 @@ FROM fedora:40 as builder # This installs all dependencies that we need (besides Rust). RUN dnf update -y && \ - dnf install git clang curl make cmake protobuf-compiler -y + dnf install git clang curl make cmake protobuf-compiler perl perl-FindBin -y # This installs Rust RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > rust_install.sh && chmod u+x rust_install.sh && ./rust_install.sh -y