From 863f9c7e538240d206ed8f6e95a306faaf9abece Mon Sep 17 00:00:00 2001 From: Toufeeq Pasha Date: Thu, 12 Dec 2024 22:14:57 +0530 Subject: [PATCH] fix releaser --- scripts/binaries/x86_64/fedora-39.Dockerfile | 2 +- scripts/binaries/x86_64/fedora-40.Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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