# Base on latest (edge) alpine image FROM harbor.ervine.dev/public/x86_64/alpine:v3.15.0 LABEL maintainer="Jonathan Ervine " # Install updates ENV LANG='en_US.UTF-8' \ LANGUAGE='en_US.UTF-8' \ TERM='xterm' RUN echo http://dl-4.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositories && \ apk update && \ apk -U upgrade --ignore alpine-baselayout && \ apk -U add python3 git py-setuptools ADD UTC /etc/localtime #RUN git clone https://github.com/Tautulli/Tautulli && \ RUN wget https://github.com/Tautulli/Tautulli/archive/v2.9.2.tar.gz && \ tar zxvf v2.9.2.tar.gz -C / && \ mv /Tautulli-2.9.2 /Tautulli && \ rm *.tar.gz && \ rm -rf /var/cache/apk/* && \ addgroup -g 1027 tautulli && \ adduser -D -u 1027 -G tautulli -H tautulli CMD [ "/usr/bin/python3", "/Tautulli/Tautulli.py", "--datadir", "/config", "--nofork", "--nolaunch" ]