3.11.6 #1

Merged
jonny merged 9 commits from 3.11.6 into master 2020-07-09 13:45:38 +00:00
Showing only changes of commit 53c4997921 - Show all commits

View File

@ -17,10 +17,10 @@ RUN echo http://dl-4.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositorie
apk update && \ apk update && \
apk -U upgrade && \ apk -U upgrade && \
apk -U add \ apk -U add \
python \ python3 \
py-lxml \ py3-lxml \
py-simplejson \ py3-simplejson \
py-openssl py3-openssl
RUN wget https://github.com/CouchPotato/CouchPotatoServer/archive/$VERSION.tar.gz -O couchpotato.tar.gz && \ RUN wget https://github.com/CouchPotato/CouchPotatoServer/archive/$VERSION.tar.gz -O couchpotato.tar.gz && \
tar zxvf couchpotato.tar.gz && \ tar zxvf couchpotato.tar.gz && \
@ -37,4 +37,4 @@ EXPOSE 5050
USER $CP_USER USER $CP_USER
CMD [ "/usr/bin/python", "/couchpotato/CouchPotato.py", "--console_log", "--data_dir=/config" ] CMD [ "/usr/bin/python3", "/couchpotato/CouchPotato.py", "--console_log", "--data_dir=/config" ]