From f4b5ac434d97f6eb41e7702c963ae51ce96b1c52 Mon Sep 17 00:00:00 2001 From: Jonathan Ervine Date: Wed, 13 May 2020 21:32:41 +0800 Subject: [PATCH] modified: Dockerfile Use python2 --- Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 07b33d8..6521e1d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,10 +17,10 @@ RUN echo http://dl-4.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositorie apk update && \ apk -U upgrade && \ apk -U add \ - python3 \ - py3-lxml \ - py3-simplejson \ - py3-openssl + python \ + py-lxml \ + py-simplejson \ + py-openssl RUN wget https://github.com/CouchPotato/CouchPotatoServer/archive/$VERSION.tar.gz -O couchpotato.tar.gz && \ tar zxvf couchpotato.tar.gz && \ @@ -37,4 +37,4 @@ EXPOSE 5050 USER $CP_USER -CMD [ "/usr/bin/python3", "/couchpotato/CouchPotato.py", "--console_log", "--data_dir=/config" ] +CMD [ "/usr/bin/python2", "/couchpotato/CouchPotato.py", "--console_log", "--data_dir=/config" ]