Switched to Alpine Linux 3.12 and python3

This commit is contained in:
Jonathan Ervine 2020-07-21 20:30:19 +08:00
parent a68dd9c5a6
commit 97fd26b2a2
2 changed files with 2 additions and 3 deletions

View File

@ -12,8 +12,7 @@ ENV LANG='en_US.UTF-8' \
RUN echo http://dl-4.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositories && \
apk update && \
apk -U upgrade && \
apk -U add \
python git py-setuptools
apk -U add python3 git py-setuptools
ADD UTC /etc/localtime

View File

@ -5,4 +5,4 @@
addgroup -g $GID $USER
adduser -D -u $UID -G $USER -H $USER
chown -R $UID:$GID /Tautulli /config
su - $USER -c "/usr/bin/python /Tautulli/Tautulli.py --datadir /config --nofork --nolaunch"
su - $USER -c "/usr/bin/python3 /Tautulli/Tautulli.py --datadir /config --nofork --nolaunch"