From 8c1cc7e4a8e1a4166a885b8769d6010d8c4d659a Mon Sep 17 00:00:00 2001 From: Wonderfall Date: Wed, 18 Jan 2017 02:55:23 +0100 Subject: [PATCH] rtorrent-flood: fix filebot handshake failure --- rtorrent-flood/Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/rtorrent-flood/Dockerfile b/rtorrent-flood/Dockerfile index 0269916..fb5cd5c 100644 --- a/rtorrent-flood/Dockerfile +++ b/rtorrent-flood/Dockerfile @@ -11,8 +11,7 @@ ENV UID=991 GID=991 \ FLOOD_SECRET=supersecret \ PKG_CONFIG_PATH=/usr/local/lib/pkgconfig -RUN echo "@community https://nl.alpinelinux.org/alpine/v3.5/community" >> /etc/apk/repositories \ - && NB_CORES=${BUILD_CORES-`getconf _NPROCESSORS_CONF`} \ +RUN NB_CORES=${BUILD_CORES-`getconf _NPROCESSORS_CONF`} \ && BUILD_DEPS=" \ build-base \ git \ @@ -32,6 +31,8 @@ RUN echo "@community https://nl.alpinelinux.org/alpine/v3.5/community" >> /etc/a ${BUILD_DEPS} \ ca-certificates \ curl \ + ncurses \ + libressl \ gzip \ zip \ unrar \ @@ -39,7 +40,7 @@ RUN echo "@community https://nl.alpinelinux.org/alpine/v3.5/community" >> /etc/a su-exec \ python \ nodejs \ - openjdk8-jre@community \ + && apk add -X http://dl-cdn.alpinelinux.org/alpine/v3.4/community -U openjdk8-jre==8.111.14-r0 openjdk8-jre-base==8.111.14-r0 openjdk8-jre-lib==8.111.14-r0 \ && cd /tmp && mkdir libtorrent rtorrent \ && cd libtorrent && wget -qO- https://github.com/rakshasa/libtorrent/archive/${LIBTORRENT_VER}.tar.gz | tar xz --strip 1 \ && cd ../rtorrent && wget -qO- https://github.com/rakshasa/rtorrent/archive/${RTORRENT_VER}.tar.gz | tar xz --strip 1 \