From cb18a03deb487ac21ccd7d424373152c8a2e573b Mon Sep 17 00:00:00 2001 From: "zongmin.gu" Date: Fri, 10 Sep 2021 18:07:01 +0800 Subject: [PATCH] Add rsync into the docker image --- tools/docker/Dockerfile.aliyunlinux3 | 3 ++- tools/docker/Dockerfile.centos8.2 | 1 + tools/docker/Dockerfile.ubuntu18.04 | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/docker/Dockerfile.aliyunlinux3 b/tools/docker/Dockerfile.aliyunlinux3 index 7cb49837..1b8076c1 100644 --- a/tools/docker/Dockerfile.aliyunlinux3 +++ b/tools/docker/Dockerfile.aliyunlinux3 @@ -66,7 +66,8 @@ RUN yum install -y --nogpgcheck \ protobuf-compiler \ protobuf-c-compiler \ protobuf-c-devel \ - protobuf-devel && \ + protobuf-devel \ + rsync && \ yum groupinstall -y 'Development Tools' && \ yum clean all && \ alternatives --set python /usr/bin/python3 diff --git a/tools/docker/Dockerfile.centos8.2 b/tools/docker/Dockerfile.centos8.2 index 4284d830..dbe6d788 100644 --- a/tools/docker/Dockerfile.centos8.2 +++ b/tools/docker/Dockerfile.centos8.2 @@ -49,6 +49,7 @@ RUN yum install epel-release -y && \ uuid-devel \ vim \ yum-utils \ + rsync \ http://downloads.sourceforge.net/ltp/lcov-1.14-1.noarch.rpm &&\ alternatives --set python /usr/bin/python2 diff --git a/tools/docker/Dockerfile.ubuntu18.04 b/tools/docker/Dockerfile.ubuntu18.04 index 1bab9d86..98956790 100644 --- a/tools/docker/Dockerfile.ubuntu18.04 +++ b/tools/docker/Dockerfile.ubuntu18.04 @@ -59,6 +59,7 @@ RUN apt-get update && DEBIAN_FRONTEND="noninteractive" apt-get install -y --no-i zip \ gnupg \ aptitude \ + rsync \ && \ apt-get clean && \ rm -rf /var/lib/apt/lists/*