在 docker 容器上安装 rdiff



我正在尝试使用 rdiff 从 docker 容器中制作备份解决方案。我有 python 安装和 python-dev 包,但是当我运行安装命令时:

python ./setup.py install 

我收到以下错误

running install
running build
running build_py
running build_ext
building 'rdiff_backup._librsync' extension
gcc -pthread -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -fPIC -I/usr/local/include/python2.7 -c _librsyncmodule.c -o build/temp.linux-x86_64-2.7/_librsyncmodule.o
_librsyncmodule.c:25:22: fatal error: librsync.h: No such file or directory
compilation terminated.
error: command 'gcc' failed with exit status 1

容器需要librsync-dev包。

最新更新