Add rsync into the docker image

This commit is contained in:
zongmin.gu 2021-09-10 18:07:01 +08:00 committed by Zongmin.Gu
parent 8f4fbba220
commit cb18a03deb
3 changed files with 4 additions and 1 deletions

@ -66,7 +66,8 @@ RUN yum install -y --nogpgcheck \
protobuf-compiler \ protobuf-compiler \
protobuf-c-compiler \ protobuf-c-compiler \
protobuf-c-devel \ protobuf-c-devel \
protobuf-devel && \ protobuf-devel \
rsync && \
yum groupinstall -y 'Development Tools' && \ yum groupinstall -y 'Development Tools' && \
yum clean all && \ yum clean all && \
alternatives --set python /usr/bin/python3 alternatives --set python /usr/bin/python3

@ -49,6 +49,7 @@ RUN yum install epel-release -y && \
uuid-devel \ uuid-devel \
vim \ vim \
yum-utils \ yum-utils \
rsync \
http://downloads.sourceforge.net/ltp/lcov-1.14-1.noarch.rpm &&\ http://downloads.sourceforge.net/ltp/lcov-1.14-1.noarch.rpm &&\
alternatives --set python /usr/bin/python2 alternatives --set python /usr/bin/python2

@ -59,6 +59,7 @@ RUN apt-get update && DEBIAN_FRONTEND="noninteractive" apt-get install -y --no-i
zip \ zip \
gnupg \ gnupg \
aptitude \ aptitude \
rsync \
&& \ && \
apt-get clean && \ apt-get clean && \
rm -rf /var/lib/apt/lists/* rm -rf /var/lib/apt/lists/*