From 5d63d7972ee6cd5c75ca89322458206398c7a5ea Mon Sep 17 00:00:00 2001 From: Mingyu Chen Date: Thu, 6 Jun 2024 14:40:37 +0800 Subject: [PATCH] [build](docker) add repo for new version of git (#35892) This PR #35208 introduce azure core C++ sdk, it needs a higher version of git to compile. This PR add new repo for centos7 to be able to `yum install git` with newer version. --- docker/compilation/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/compilation/Dockerfile b/docker/compilation/Dockerfile index d24c1e729291a5..6b25dc2c3ffa3e 100644 --- a/docker/compilation/Dockerfile +++ b/docker/compilation/Dockerfile @@ -18,7 +18,7 @@ FROM centos:7 AS builder # install epel repo for ccache -RUN yum install epel-release -y && yum clean all && yum makecache +RUN yum install epel-release -y && yum install https://packages.endpointdev.com/rhel/7/os/x86_64/endpoint-repo.x86_64.rpm -y && yum clean all && yum makecache # install dependencies RUN yum install -y byacc patch automake libtool perf vim make which file ncurses-devel gettext-devel unzip bzip2 zip util-linux \