From 773e4b2d4ec423ae602a29ec6e765c1fd9b32302 Mon Sep 17 00:00:00 2001 From: James Golovich Date: Thu, 18 Jun 2015 13:33:23 -0700 Subject: [PATCH] Add deluge to flexget and update image to use python 2.7.9 Python < 2.7.9 doesn't support TLS SNI (Server Name Indication). Lots of python3 does, but flexget doesn't support python3 --- flexget/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/flexget/Dockerfile b/flexget/Dockerfile index 68ab3aa..4e5187a 100755 --- a/flexget/Dockerfile +++ b/flexget/Dockerfile @@ -23,10 +23,11 @@ RUN usermod -d /config nobody # Add default config ADD config.yml /config.yml -RUN add-apt-repository "deb http://us.archive.ubuntu.com/ubuntu/ trusty universe multiverse" && \ +RUN add-apt-repository "ppa:fkrull/deadsnakes-python2.7" && \ + add-apt-repository "deb http://us.archive.ubuntu.com/ubuntu/ trusty universe multiverse" && \ add-apt-repository "deb http://us.archive.ubuntu.com/ubuntu/ trusty-updates universe multiverse" && \ apt-get update -qq && \ - apt-get install -qq --force-yes python2.7 python-dev python-pip python-transmissionrpc wget && \ + apt-get install -qq --force-yes python2.7 python-dev python-pip python-transmissionrpc deluge-common wget && \ apt-get autoremove && \ apt-get autoclean && \ pip install flexget && \