x86_64-alpine-tautulli/Dockerfile

28 lines
888 B
Docker

# Base on latest (edge) alpine image
FROM harbor.ervine.dev/public/x86_64/alpine:v3.13.0
LABEL maintainer="Jonathan Ervine <docker@ervine.org>"
# 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.6.7.tar.gz && \
tar zxvf v2.6.7.tar.gz -C / && \
mv /Tautulli-2.6.7 /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" ]