From 784ee4425ee8398d46d46ec04c01f978059d44c8 Mon Sep 17 00:00:00 2001 From: orangeudav Date: Tue, 3 Jan 2017 14:51:12 +0300 Subject: [PATCH] Fix https://github.com/kfei/docktorrent/issues/42 See https://github.com/Micka33/docker-rtorrent-rutorrent/commit/55ba6bccd3c95fc47c2806880e3b8d7976577be0 --- Dockerfile | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3da2038..c1225e4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,14 +21,7 @@ RUN build_deps="automake build-essential ca-certificates libc-ares-dev libcppuni cd .. && \ rm -rf curl-* && \ ldconfig && \ - svn --trust-server-cert checkout https://svn.code.sf.net/p/xmlrpc-c/code/stable/ xmlrpc-c && \ - cd xmlrpc-c && \ - ./configure --enable-libxml2-backend --disable-abyss-server --disable-cgi-server && \ - make && \ - make install && \ - cd .. && \ - rm -rf xmlrpc-c && \ - ldconfig && \ + apt-get -y install libxmlrpc-core-c3 libxmlrpc-core-c3-dev && \ wget -O libtorrent-$VER_LIBTORRENT.tar.gz https://github.com/rakshasa/libtorrent/archive/$VER_LIBTORRENT.tar.gz && \ tar xzf libtorrent-$VER_LIBTORRENT.tar.gz && \ cd libtorrent-$VER_LIBTORRENT && \